Re: [U-Boot] [PATCH] Add some missing endian conversions in fdt_support.c

2011-11-13 Thread Jerry Van Baren
On 11/08/2011 04:05 AM, Gabe Black wrote: > Some functions in fdt_support.c use fdt_getprop to read 32 bit values out of > the device tree, but then use them directly without doing any endian > conversion. Because they check for a value that doesn't actually appear in > practice, the functions cont

Re: [U-Boot] [PATCH] Add some missing endian conversions in fdt_support.c

2011-11-12 Thread Gabe Black
Bump. On Tue, Nov 8, 2011 at 5:47 AM, Mike Frysinger wrote: > +fdt maintainer > > On Tuesday 08 November 2011 04:05:32 Gabe Black wrote: > > Some functions in fdt_support.c use fdt_getprop to read 32 bit values out > > of the device tree, but then use them directly without doing any endian > > c

Re: [U-Boot] [PATCH] Add some missing endian conversions in fdt_support.c

2011-11-08 Thread Mike Frysinger
+fdt maintainer On Tuesday 08 November 2011 04:05:32 Gabe Black wrote: > Some functions in fdt_support.c use fdt_getprop to read 32 bit values out > of the device tree, but then use them directly without doing any endian > conversion. Because they check for a value that doesn't actually appear in

[U-Boot] [PATCH] Add some missing endian conversions in fdt_support.c

2011-11-08 Thread Gabe Black
Some functions in fdt_support.c use fdt_getprop to read 32 bit values out of the device tree, but then use them directly without doing any endian conversion. Because they check for a value that doesn't actually appear in practice, the functions continued to work even though they're incorrect. This