[U-Boot] [PATCH 1/2] fdt: add support the ePAPR phandle property

2011-05-06 Thread Timur Tabi
The ePAPR specification says that phandle properties should be called phandle, and not linux,phandle. To facilitate the migration from linux,phandle to phandle, we update some functions to support both properties. Signed-off-by: Timur Tabi ti...@freescale.com --- common/fdt_support.c |6

Re: [U-Boot] [PATCH 1/2] fdt: add support the ePAPR phandle property

2011-05-06 Thread Grant Likely
On Fri, May 6, 2011 at 11:56 AM, Timur Tabi ti...@freescale.com wrote: The ePAPR specification says that phandle properties should be called phandle, and not linux,phandle.  To facilitate the migration from linux,phandle to phandle, we update some functions to support both properties.

Re: [U-Boot] [PATCH 1/2] fdt: add support the ePAPR phandle property

2011-05-06 Thread Timur Tabi
Grant Likely wrote: As discussed on IRC, upstream libfdt already supports the phandle property, so u-boot needs to be updated to the latest version from the dtc.git repo on git.jdl.com. You'll still need the change to common/fdt_support.c though. Upstream libfdt was fixed back in 2009. Why