Re: [U-Boot] [PATCH v3 10/16] dm: Add a 'dm' command for testing

2013-10-18 Thread Simon Glass
Hi Marek, On Fri, Jun 28, 2013 at 2:57 PM, Marek Vasut wrote: > Dear Simon Glass, > > > +U_BOOT_CMD( > > + dm, 2, 1, do_dm, > > + "Driver model low level access", > > + "dump Dump driver model tree\n" > > + "dm uclassDump list of instances for each u

Re: [U-Boot] [PATCH v3 10/16] dm: Add a 'dm' command for testing

2013-06-28 Thread Marek Vasut
Dear Simon Glass, > +U_BOOT_CMD( > + dm, 2, 1, do_dm, > + "Driver model low level access", > + "dump Dump driver model tree\n" > + "dm uclassDump list of instances for each uclass\n" > + "dm test Run tests" > +); Looking at this, remark co

[U-Boot] [PATCH v3 10/16] dm: Add a 'dm' command for testing

2013-06-18 Thread Simon Glass
This command is not required for driver model operation, but can be useful for testing. It provides simple dumps of internal data structures. Signed-off-by: Simon Glass Signed-off-by: Marek Vasut Signed-off-by: Pavel Herrmann Signed-off-by: Viktor Křivák Signed-off-by: Tomas Hlavacek --- Chan