[PATCH 09/18] cdev: record whether partition is parsed from OF

2023-05-31 Thread Ahmad Fatoum
Later code will make it possible to define a on-disk-described partition in the DT as well. For this reason, we can't assumed DEVFS_PARTITION_FROM_TABLE to mean !DT, so let's add a dedicated flag for that. Signed-off-by: Ahmad Fatoum --- drivers/of/partition.c | 5 +++-- fs/fs.c|

Re: [PATCH 09/18] cdev: record whether partition is parsed from OF

2023-05-31 Thread Marco Felsch
Hi Ahmad, On 23-05-31, Ahmad Fatoum wrote: > Later code will make it possible to define a on-disk-described partition > in the DT as well. For this reason, we can't assumed > DEVFS_PARTITION_FROM_TABLE to mean !DT, so let's add a dedicated flag > for that. > > Signed-off-by: Ahmad Fatoum > --- >

Re: [PATCH 09/18] cdev: record whether partition is parsed from OF

2023-06-01 Thread Ulrich Ölmann
Hi Ahmad, again some nitpicky typo fixes. On Wed, May 31 2023 at 16:59 +0200, Ahmad Fatoum wrote: > Later code will make it possible to define a on-disk-described partition s/a on-disk-described/an on-disk-described/ > in the DT as well. For this reason, we can't assumed s/assumed/assume/ B

Re: [PATCH 09/18] cdev: record whether partition is parsed from OF

2023-06-06 Thread Ahmad Fatoum
On 31.05.23 19:04, Marco Felsch wrote: > Hi Ahmad, > > On 23-05-31, Ahmad Fatoum wrote: >> Later code will make it possible to define a on-disk-described partition >> in the DT as well. For this reason, we can't assumed >> DEVFS_PARTITION_FROM_TABLE to mean !DT, so let's add a dedicated flag >> fo