Re: [U-Boot] [PATCH 1/3] dm: blk: Add a way to obtain a block device from its parent

2017-06-20 Thread Simon Glass
Hi Jaehoon, On 8 June 2017 at 21:38, Jaehoon Chung wrote: > On 06/09/2017 12:06 PM, Simon Glass wrote: >> Hi Jaehoon, >> >> On 6 June 2017 at 21:49, Jaehoon Chung wrote: >>> Hi Simon, >>> >>> On 05/28/2017 02:37 AM, Simon Glass wrote: Many devices support a child block device (e.g. MMC, USB

Re: [U-Boot] [PATCH 1/3] dm: blk: Add a way to obtain a block device from its parent

2017-06-08 Thread Jaehoon Chung
On 06/09/2017 12:06 PM, Simon Glass wrote: > Hi Jaehoon, > > On 6 June 2017 at 21:49, Jaehoon Chung wrote: >> Hi Simon, >> >> On 05/28/2017 02:37 AM, Simon Glass wrote: >>> Many devices support a child block device (e.g. MMC, USB). Add a >>> convenient way to get this device given the parent devi

Re: [U-Boot] [PATCH 1/3] dm: blk: Add a way to obtain a block device from its parent

2017-06-08 Thread Simon Glass
Hi Jaehoon, On 6 June 2017 at 21:49, Jaehoon Chung wrote: > Hi Simon, > > On 05/28/2017 02:37 AM, Simon Glass wrote: >> Many devices support a child block device (e.g. MMC, USB). Add a >> convenient way to get this device given the parent device. >> >> Signed-off-by: Simon Glass >> --- >> >> dr

Re: [U-Boot] [PATCH 1/3] dm: blk: Add a way to obtain a block device from its parent

2017-06-06 Thread Jaehoon Chung
Hi Simon, On 05/28/2017 02:37 AM, Simon Glass wrote: > Many devices support a child block device (e.g. MMC, USB). Add a > convenient way to get this device given the parent device. > > Signed-off-by: Simon Glass > --- > > drivers/block/blk-uclass.c | 26 ++ > include/bl

Re: [U-Boot] [PATCH 1/3] dm: blk: Add a way to obtain a block device from its parent

2017-05-28 Thread Tom Rini
On Sat, May 27, 2017 at 11:37:17AM -0600, Simon Glass wrote: > Many devices support a child block device (e.g. MMC, USB). Add a > convenient way to get this device given the parent device. > > Signed-off-by: Simon Glass Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signat

[U-Boot] [PATCH 1/3] dm: blk: Add a way to obtain a block device from its parent

2017-05-27 Thread Simon Glass
Many devices support a child block device (e.g. MMC, USB). Add a convenient way to get this device given the parent device. Signed-off-by: Simon Glass --- drivers/block/blk-uclass.c | 26 ++ include/blk.h | 7 +++ test/dm/blk.c | 18 +++