Re: [U-Boot] [PATCH v4 5/5] devres: add debug command to dump device resources

2015-07-28 Thread Simon Glass
On 28 July 2015 at 12:07, Simon Glass wrote: > On 25 July 2015 at 06:52, Masahiro Yamada > wrote: >> This new command can dump all device resources associated to >> each device. The fields in every line shows: >> - The address of the resource >> - The size of the resource >> - The name of

Re: [U-Boot] [PATCH v4 5/5] devres: add debug command to dump device resources

2015-07-28 Thread Simon Glass
On 25 July 2015 at 06:52, Masahiro Yamada wrote: > This new command can dump all device resources associated to > each device. The fields in every line shows: > - The address of the resource > - The size of the resource > - The name of the release function > - The stage in which the resou

[U-Boot] [PATCH v4 5/5] devres: add debug command to dump device resources

2015-07-25 Thread Masahiro Yamada
This new command can dump all device resources associated to each device. The fields in every line shows: - The address of the resource - The size of the resource - The name of the release function - The stage in which the resource has been acquired (BIND/PROBE) Currently, there is no dri