Re: [U-Boot] [PATCH v3 08/12] libfdt: Add fdt_path_offset_namelen

2016-06-28 Thread Simon Glass
On 26 June 2016 at 01:10, Maxime Ripard wrote: > Hi, > > On Sat, Jun 25, 2016 at 08:53:53PM -0600, Simon Glass wrote: >> On 24 June 2016 at 08:27, Maxime Ripard >> wrote: >> > Add a namelen variant of fdt_path_offset to retrieve the node offset using >> > only a fixed number of characters. >> > >

Re: [U-Boot] [PATCH v3 08/12] libfdt: Add fdt_path_offset_namelen

2016-06-26 Thread David Gibson
On Fri, Jun 24, 2016 at 04:27:53PM +0200, Maxime Ripard wrote: > Add a namelen variant of fdt_path_offset to retrieve the node offset using > only a fixed number of characters. > > Signed-off-by: Maxime Ripard Looks good for upstream. > --- > include/libfdt.h| 16 +++- > lib/li

Re: [U-Boot] [PATCH v3 08/12] libfdt: Add fdt_path_offset_namelen

2016-06-26 Thread Maxime Ripard
Hi, On Sat, Jun 25, 2016 at 08:53:53PM -0600, Simon Glass wrote: > On 24 June 2016 at 08:27, Maxime Ripard > wrote: > > Add a namelen variant of fdt_path_offset to retrieve the node offset using > > only a fixed number of characters. > > > > Signed-off-by: Maxime Ripard > > --- > > include/libf

Re: [U-Boot] [PATCH v3 08/12] libfdt: Add fdt_path_offset_namelen

2016-06-25 Thread Simon Glass
On 24 June 2016 at 08:27, Maxime Ripard wrote: > Add a namelen variant of fdt_path_offset to retrieve the node offset using > only a fixed number of characters. > > Signed-off-by: Maxime Ripard > --- > include/libfdt.h| 16 +++- > lib/libfdt/fdt_ro.c | 18 ++ > 2

[U-Boot] [PATCH v3 08/12] libfdt: Add fdt_path_offset_namelen

2016-06-24 Thread Maxime Ripard
Add a namelen variant of fdt_path_offset to retrieve the node offset using only a fixed number of characters. Signed-off-by: Maxime Ripard --- include/libfdt.h| 16 +++- lib/libfdt/fdt_ro.c | 18 ++ 2 files changed, 25 insertions(+), 9 deletions(-) diff --git a/i