Re: [PATCH] dm: core: Do not stop uclass iteration on error.

2022-08-04 Thread Simon Glass
Hi Michal, On Thu, 4 Aug 2022 at 13:36, Michal Suchánek wrote: > > Hello, > > On Thu, Aug 04, 2022 at 01:22:57PM -0600, Simon Glass wrote: > > Hi Michal, > > > > On Thu, 4 Aug 2022 at 11:59, Michal Suchanek wrote: > > > > > > When probing a device fails NULL pointer is returned, and other device

Re: [PATCH] dm: core: Do not stop uclass iteration on error.

2022-08-04 Thread Michal Suchánek
Hello, On Thu, Aug 04, 2022 at 01:22:57PM -0600, Simon Glass wrote: > Hi Michal, > > On Thu, 4 Aug 2022 at 11:59, Michal Suchanek wrote: > > > > When probing a device fails NULL pointer is returned, and other devices > > cannot be iterated. Skip to next device on error instead. > > > > Fixes: 64

Re: [PATCH] dm: core: Do not stop uclass iteration on error.

2022-08-04 Thread Simon Glass
Hi Michal, On Thu, 4 Aug 2022 at 11:59, Michal Suchanek wrote: > > When probing a device fails NULL pointer is returned, and other devices > cannot be iterated. Skip to next device on error instead. > > Fixes: 6494d708bf ("dm: Add base driver model support") > Signed-off-by: Michal Suchanek > --