Re: [U-Boot] [PATCH 04/21] dm: fdt: Add a function to decode phandles with arguments

2015-01-15 Thread Simon Glass
Hi Masahiro, On 15 January 2015 at 00:29, Masahiro Yamada wrote: > Hi Simon, > > > A nit > > > On Mon, 5 Jan 2015 20:05:26 -0700 > Simon Glass wrote: > >> For GPIOs and other functions we want to look up a phandle and then decode >> a list of arguments for that phandle. Each phandle can have a

Re: [U-Boot] [PATCH 04/21] dm: fdt: Add a function to decode phandles with arguments

2015-01-14 Thread Masahiro Yamada
Hi Simon, A nit On Mon, 5 Jan 2015 20:05:26 -0700 Simon Glass wrote: > For GPIOs and other functions we want to look up a phandle and then decode > a list of arguments for that phandle. Each phandle can have a different > number of arguments, specified by a property in the target node. This

Re: [U-Boot] [PATCH 04/21] dm: fdt: Add a function to decode phandles with arguments

2015-01-14 Thread Simon Glass
On 5 January 2015 at 20:05, Simon Glass wrote: > For GPIOs and other functions we want to look up a phandle and then decode > a list of arguments for that phandle. Each phandle can have a different > number of arguments, specified by a property in the target node. This is > the "#gpio-cells" prope

[U-Boot] [PATCH 04/21] dm: fdt: Add a function to decode phandles with arguments

2015-01-05 Thread Simon Glass
For GPIOs and other functions we want to look up a phandle and then decode a list of arguments for that phandle. Each phandle can have a different number of arguments, specified by a property in the target node. This is the "#gpio-cells" property for GPIOs. Add a function to provide this feature,