Re: [U-Boot] [PATCH] uclass: Use uclass_foreach_dev() macro instead of open coding

2018-09-25 Thread Simon Glass
Hi Livu, On 19 September 2018 at 10:37, Liviu Dudau wrote: > On Wed, Sep 19, 2018 at 09:30:37AM -0600, Simon Glass wrote: >> Hi, >> >> On 18 September 2018 at 02:08, Liviu Dudau wrote: >> > >> > On Tue, Sep 18, 2018 at 04:06:13AM +0200, Simon Glass wrote: >> > > On 17 September 2018 at 10:44,

Re: [U-Boot] [PATCH] uclass: Use uclass_foreach_dev() macro instead of open coding

2018-09-19 Thread Liviu Dudau
On Wed, Sep 19, 2018 at 09:30:37AM -0600, Simon Glass wrote: > Hi, > > On 18 September 2018 at 02:08, Liviu Dudau wrote: > > > > On Tue, Sep 18, 2018 at 04:06:13AM +0200, Simon Glass wrote: > > > On 17 September 2018 at 10:44, Liviu Dudau > > > wrote: > > > > Use the uclass_foreach_dev() macro

Re: [U-Boot] [PATCH] uclass: Use uclass_foreach_dev() macro instead of open coding

2018-09-19 Thread Simon Glass
Hi, On 18 September 2018 at 02:08, Liviu Dudau wrote: > > On Tue, Sep 18, 2018 at 04:06:13AM +0200, Simon Glass wrote: > > On 17 September 2018 at 10:44, Liviu Dudau wrote: > > > Use the uclass_foreach_dev() macro instead of the open coded version. > > > > > > Signed-off-by: Liviu Dudau > > >

Re: [U-Boot] [PATCH] uclass: Use uclass_foreach_dev() macro instead of open coding

2018-09-18 Thread Liviu Dudau
On Tue, Sep 18, 2018 at 04:06:13AM +0200, Simon Glass wrote: > On 17 September 2018 at 10:44, Liviu Dudau wrote: > > Use the uclass_foreach_dev() macro instead of the open coded version. > > > > Signed-off-by: Liviu Dudau > > --- > > drivers/core/uclass.c | 2 +- > > 1 file changed, 1

Re: [U-Boot] [PATCH] uclass: Use uclass_foreach_dev() macro instead of open coding

2018-09-17 Thread Heiko Schocher
Hello Liviu, Am 17.09.2018 um 18:44 schrieb Liviu Dudau: Use the uclass_foreach_dev() macro instead of the open coded version. Signed-off-by: Liviu Dudau --- drivers/core/uclass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Heiko Schocher bye, Heiko -- DENX

Re: [U-Boot] [PATCH] uclass: Use uclass_foreach_dev() macro instead of open coding

2018-09-17 Thread Simon Glass
On 17 September 2018 at 10:44, Liviu Dudau wrote: > Use the uclass_foreach_dev() macro instead of the open coded version. > > Signed-off-by: Liviu Dudau > --- > drivers/core/uclass.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Simon Glass Perhaps you could also

[U-Boot] [PATCH] uclass: Use uclass_foreach_dev() macro instead of open coding

2018-09-17 Thread Liviu Dudau
Use the uclass_foreach_dev() macro instead of the open coded version. Signed-off-by: Liviu Dudau --- drivers/core/uclass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/core/uclass.c b/drivers/core/uclass.c index 3113d6a56b..081571951d 100644 ---