Re: [PATCH v3] backlight: lp855x: use private data for regulator control

2015-08-10 Thread Lee Jones
On Mon, 20 Jul 2015, Milo Kim wrote: > LP855x backlight device can be enabled by external VDD input. > The 'supply' data is used for this purpose. > It's kind of private data which runs internally, so there is no reason to > expose to the platform data. > > And devm_regulator_get() is moved from

Re: [PATCH v3] backlight: lp855x: use private data for regulator control

2015-08-10 Thread Lee Jones
On Mon, 20 Jul 2015, Milo Kim wrote: LP855x backlight device can be enabled by external VDD input. The 'supply' data is used for this purpose. It's kind of private data which runs internally, so there is no reason to expose to the platform data. And devm_regulator_get() is moved from

Re: [PATCH v3] backlight: lp855x: use private data for regulator control

2015-08-06 Thread Jingoo Han
On Monday, July 20, 2015 10:31 PM, Sean Paul wrote: > On Mon, Jul 20, 2015 at 2:45 AM, Milo Kim wrote: > > LP855x backlight device can be enabled by external VDD input. > > The 'supply' data is used for this purpose. > > It's kind of private data which runs internally, so there is no reason to >

Re: [PATCH v3] backlight: lp855x: use private data for regulator control

2015-08-06 Thread Jingoo Han
On Monday, July 20, 2015 10:31 PM, Sean Paul wrote: On Mon, Jul 20, 2015 at 2:45 AM, Milo Kim milo@ti.com wrote: LP855x backlight device can be enabled by external VDD input. The 'supply' data is used for this purpose. It's kind of private data which runs internally, so there is no

Re: [PATCH v3] backlight: lp855x: use private data for regulator control

2015-07-20 Thread Sean Paul
On Mon, Jul 20, 2015 at 2:45 AM, Milo Kim wrote: > LP855x backlight device can be enabled by external VDD input. > The 'supply' data is used for this purpose. > It's kind of private data which runs internally, so there is no reason to > expose to the platform data. > > And devm_regulator_get() is

[PATCH v3] backlight: lp855x: use private data for regulator control

2015-07-20 Thread Milo Kim
LP855x backlight device can be enabled by external VDD input. The 'supply' data is used for this purpose. It's kind of private data which runs internally, so there is no reason to expose to the platform data. And devm_regulator_get() is moved from _parse_dt() to _probe(). Regulator

[PATCH v3] backlight: lp855x: use private data for regulator control

2015-07-20 Thread Milo Kim
LP855x backlight device can be enabled by external VDD input. The 'supply' data is used for this purpose. It's kind of private data which runs internally, so there is no reason to expose to the platform data. And devm_regulator_get() is moved from _parse_dt() to _probe(). Regulator

Re: [PATCH v3] backlight: lp855x: use private data for regulator control

2015-07-20 Thread Sean Paul
On Mon, Jul 20, 2015 at 2:45 AM, Milo Kim milo@ti.com wrote: LP855x backlight device can be enabled by external VDD input. The 'supply' data is used for this purpose. It's kind of private data which runs internally, so there is no reason to expose to the platform data. And