Re: [U-Boot] [PATCH V2 1/6] dm: gpio: add a default gpio xlate routine

2016-04-11 Thread Eric Nelson
Hi Stephen, On 04/11/2016 10:16 AM, Stephen Warren wrote: > On 04/11/2016 11:00 AM, Eric Nelson wrote: >> Many drivers use a common form of offset + flags for device >> tree nodes. e.g.: >> <&gpio1 2 GPIO_ACTIVE_LOW> >> >> This patch adds a common implementation of this type of parsing >> and

Re: [U-Boot] [PATCH V2 1/6] dm: gpio: add a default gpio xlate routine

2016-04-11 Thread Stephen Warren
On 04/11/2016 11:00 AM, Eric Nelson wrote: Many drivers use a common form of offset + flags for device tree nodes. e.g.: <&gpio1 2 GPIO_ACTIVE_LOW> This patch adds a common implementation of this type of parsing and calls it when a gpio driver doesn't supply its' own xlate routine. This

[U-Boot] [PATCH V2 1/6] dm: gpio: add a default gpio xlate routine

2016-04-11 Thread Eric Nelson
Many drivers use a common form of offset + flags for device tree nodes. e.g.: <&gpio1 2 GPIO_ACTIVE_LOW> This patch adds a common implementation of this type of parsing and calls it when a gpio driver doesn't supply its' own xlate routine. This will allow removal of the driver-specific ve