Re: [U-Boot] [PATCH 2/5] dm: ofnode: simplify ofnode_read_prop()

2017-07-06 Thread sjg
On 22 June 2017 at 01:54, Masahiro Yamada wrote: > The code inside the if-block is the same as of_get_property(). > > Signed-off-by: Masahiro Yamada > --- > > drivers/core/ofnode.c | 12 +++- > 1 file changed, 3 insertions(+), 9 deletions(-) Acked-by: Simon Glass Applied to u-boot-dm,

Re: [U-Boot] [PATCH 2/5] dm: ofnode: simplify ofnode_read_prop()

2017-07-05 Thread Simon Glass
On 22 June 2017 at 01:54, Masahiro Yamada wrote: > The code inside the if-block is the same as of_get_property(). > > Signed-off-by: Masahiro Yamada > --- > > drivers/core/ofnode.c | 12 +++- > 1 file changed, 3 insertions(+), 9 deletions(-) Acked-by: Simon Glass __

[U-Boot] [PATCH 2/5] dm: ofnode: simplify ofnode_read_prop()

2017-06-22 Thread Masahiro Yamada
The code inside the if-block is the same as of_get_property(). Signed-off-by: Masahiro Yamada --- drivers/core/ofnode.c | 12 +++- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/drivers/core/ofnode.c b/drivers/core/ofnode.c index b8b16bf5e275..08b3e03b1e8e 100644 --- a/dr