Re: [U-Boot] [PATCH] [fdt] Fix constness of the fdt void pointer in fdt_getprop_u32_default

2011-11-13 Thread Jerry Van Baren
On 11/08/2011 04:09 AM, Gabe Black wrote: The function fdt_getprop_u32_default doesn't modify the fdt, so it can use a const void * for its fdt argument. Signed-off-by: Gabe Blackgabebl...@chromium.org Applied and requested a bugfix pull. Thanks, gvb

Re: [U-Boot] [PATCH] [fdt] Fix constness of the fdt void pointer in fdt_getprop_u32_default

2011-11-12 Thread Gabe Black
Bump. On Tue, Nov 8, 2011 at 5:47 AM, Mike Frysinger vap...@gentoo.org wrote: +fdt maintainer On Tuesday 08 November 2011 04:09:44 Gabe Black wrote: The function fdt_getprop_u32_default doesn't modify the fdt, so it can use a const void * for its fdt argument. Signed-off-by: Gabe

[U-Boot] [PATCH] [fdt] Fix constness of the fdt void pointer in fdt_getprop_u32_default

2011-11-08 Thread Gabe Black
The function fdt_getprop_u32_default doesn't modify the fdt, so it can use a const void * for its fdt argument. Signed-off-by: Gabe Black gabebl...@chromium.org --- common/fdt_support.c |4 ++-- include/fdt_support.h |4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git

Re: [U-Boot] [PATCH] [fdt] Fix constness of the fdt void pointer in fdt_getprop_u32_default

2011-11-08 Thread Mike Frysinger
+fdt maintainer On Tuesday 08 November 2011 04:09:44 Gabe Black wrote: The function fdt_getprop_u32_default doesn't modify the fdt, so it can use a const void * for its fdt argument. Signed-off-by: Gabe Black gabebl...@chromium.org --- common/fdt_support.c |4 ++--