Re: [PATCH v5 09/15] cmd: List all uclass devices regardless of probe error

2022-10-02 Thread Simon Glass
Hi Michal, On Sun, 2 Oct 2022 at 13:10, Michal Suchánek wrote: > > Hello, > > On Thu, Sep 29, 2022 at 04:00:42AM -0600, Simon Glass wrote: > > On Tue, 27 Sept 2022 at 15:38, Michal Suchanek wrote: > > > > > > There are a few commands that iterate uclass with > > > uclass_first_device/uclass_next

Re: [PATCH v5 09/15] cmd: List all uclass devices regardless of probe error

2022-10-02 Thread Michal Suchánek
Hello, On Thu, Sep 29, 2022 at 04:00:42AM -0600, Simon Glass wrote: > On Tue, 27 Sept 2022 at 15:38, Michal Suchanek wrote: > > > > There are a few commands that iterate uclass with > > uclass_first_device/uclass_next_device or the _err variant. > > > > Use the _check class iterator variant to ge

Re: [PATCH v5 09/15] cmd: List all uclass devices regardless of probe error

2022-09-29 Thread Simon Glass
On Tue, 27 Sept 2022 at 15:38, Michal Suchanek wrote: > > There are a few commands that iterate uclass with > uclass_first_device/uclass_next_device or the _err variant. > > Use the _check class iterator variant to get devices that fail to probe > as well, and print the status. > > Signed-off-by:

[PATCH v5 09/15] cmd: List all uclass devices regardless of probe error

2022-09-27 Thread Michal Suchanek
There are a few commands that iterate uclass with uclass_first_device/uclass_next_device or the _err variant. Use the _check class iterator variant to get devices that fail to probe as well, and print the status. Signed-off-by: Michal Suchanek --- cmd/adc.c | 22 ++ cm