Re: [PATCH 1/5] mfd: twl-core: Fix passing of platform data in the device tree case

2013-11-25 Thread Tony Lindgren
* Lee Jones lee.jo...@linaro.org [131121 03:10]: Here Tony, you can take this one. I will simply apply my other fixes on top of it. The issue is, I will most likely have to rebase it on top of -rc1 prior to sending a request to Linus, so in that regard it's not exactly immutable.

Re: [PATCH 1/5] mfd: twl-core: Fix passing of platform data in the device tree case

2013-11-21 Thread Lee Jones
On Mon, 18 Nov 2013, Tony Lindgren wrote: * Lee Jones lee.jo...@linaro.org [131118 11:10]: Are you Acking this patch by the way? If this looks acceptable to you guys, I'd like to merge this via my fixes branch this week with your acks if that works for you. That way I can base

Re: [PATCH 1/5] mfd: twl-core: Fix passing of platform data in the device tree case

2013-11-21 Thread Lee Jones
Here Tony, you can take this one. I will simply apply my other fixes on top of it. The issue is, I will most likely have to rebase it on top of -rc1 prior to sending a request to Linus, so in that regard it's not exactly immutable. Ignore the above. This is what you want: The

Re: [PATCH 1/5] mfd: twl-core: Fix passing of platform data in the device tree case

2013-11-18 Thread Lee Jones
Since we still need to rely on a mix of device tree initialized drivers and legacy platform data initialize drivers, let's fix the passing of platform data to twl4030-gpio. As the twl4030 GPIO is initialized by twl-core.c, we need to register the auxdata for twl4030 GPIO in twl-core.c.

Re: [PATCH 1/5] mfd: twl-core: Fix passing of platform data in the device tree case

2013-11-18 Thread Felipe Balbi
Hi, On Mon, Nov 18, 2013 at 10:29:07AM +, Lee Jones wrote: Since we still need to rely on a mix of device tree initialized drivers and legacy platform data initialize drivers, let's fix the passing of platform data to twl4030-gpio. As the twl4030 GPIO is initialized by twl-core.c,

Re: [PATCH 1/5] mfd: twl-core: Fix passing of platform data in the device tree case

2013-11-18 Thread Lee Jones
+static struct of_dev_auxdata twl_auxdata_lookup[] = { + OF_DEV_AUXDATA(ti,twl4030-gpio, 0, twl4030-gpio, NULL), + { /* sentinel */ }, +}; + /* NOTE: This driver only handles a single twl4030/tps659x0 chip */ static int twl_probe(struct i2c_client *client, const struct

Re: [PATCH 1/5] mfd: twl-core: Fix passing of platform data in the device tree case

2013-11-18 Thread Tony Lindgren
* Lee Jones lee.jo...@linaro.org [131118 09:47]: +static struct of_dev_auxdata twl_auxdata_lookup[] = { + OF_DEV_AUXDATA(ti,twl4030-gpio, 0, twl4030-gpio, NULL), + { /* sentinel */ }, +}; + /* NOTE: This driver only handles a single twl4030/tps659x0 chip */

Re: [PATCH 1/5] mfd: twl-core: Fix passing of platform data in the device tree case

2013-11-18 Thread Felipe Balbi
Hi, On Mon, Nov 18, 2013 at 05:46:38PM +, Lee Jones wrote: +static struct of_dev_auxdata twl_auxdata_lookup[] = { + OF_DEV_AUXDATA(ti,twl4030-gpio, 0, twl4030-gpio, NULL), + { /* sentinel */ }, +}; + /* NOTE: This driver only handles a single

Re: [PATCH 1/5] mfd: twl-core: Fix passing of platform data in the device tree case

2013-11-18 Thread Lee Jones
Are you Acking this patch by the way? If this looks acceptable to you guys, I'd like to merge this via my fixes branch this week with your acks if that works for you. That way I can base my omap legacy platform data removal patches on my fixes branch while keep things working for the

Re: [PATCH 1/5] mfd: twl-core: Fix passing of platform data in the device tree case

2013-11-18 Thread Tony Lindgren
* Lee Jones lee.jo...@linaro.org [131118 11:10]: Are you Acking this patch by the way? If this looks acceptable to you guys, I'd like to merge this via my fixes branch this week with your acks if that works for you. That way I can base my omap legacy platform data removal patches on my

Re: [PATCH 1/5] mfd: twl-core: Fix passing of platform data in the device tree case

2013-11-18 Thread Lee Jones
On Mon, 18 Nov 2013, Tony Lindgren wrote: * Lee Jones lee.jo...@linaro.org [131118 11:10]: Are you Acking this patch by the way? If this looks acceptable to you guys, I'd like to merge this via my fixes branch this week with your acks if that works for you. That way I can base

Re: [PATCH 1/5] mfd: twl-core: Fix passing of platform data in the device tree case

2013-11-18 Thread Tony Lindgren
* Lee Jones lee.jo...@linaro.org [131118 11:29]: On Mon, 18 Nov 2013, Tony Lindgren wrote: * Lee Jones lee.jo...@linaro.org [131118 11:10]: Are you Acking this patch by the way? If this looks acceptable to you guys, I'd like to merge this via my fixes branch this week

[PATCH 1/5] mfd: twl-core: Fix passing of platform data in the device tree case

2013-11-15 Thread Tony Lindgren
Since we still need to rely on a mix of device tree initialized drivers and legacy platform data initialize drivers, let's fix the passing of platform data to twl4030-gpio. As the twl4030 GPIO is initialized by twl-core.c, we need to register the auxdata for twl4030 GPIO in twl-core.c. Cc: