Re: [PATCH 3/3] regulator: lp873x: Add support for lp873x PMIC regulators

2016-05-06 Thread Keerthy
On Friday 06 May 2016 05:32 PM, Mark Brown wrote: On Fri, May 06, 2016 at 10:13:24AM +0530, Keerthy wrote: I am using of_platform_populate function in the mfd driver to create platform devices for the child nodes, in my case regulators. of_platform_populate in turn calls on to

Re: [PATCH 3/3] regulator: lp873x: Add support for lp873x PMIC regulators

2016-05-06 Thread Keerthy
On Friday 06 May 2016 05:32 PM, Mark Brown wrote: On Fri, May 06, 2016 at 10:13:24AM +0530, Keerthy wrote: I am using of_platform_populate function in the mfd driver to create platform devices for the child nodes, in my case regulators. of_platform_populate in turn calls on to

Re: [PATCH 3/3] regulator: lp873x: Add support for lp873x PMIC regulators

2016-05-06 Thread Mark Brown
On Fri, May 06, 2016 at 10:13:24AM +0530, Keerthy wrote: > I am using of_platform_populate function in the mfd driver to create > platform devices for the child nodes, in my case regulators. > of_platform_populate in turn calls on to of_platform_bus_create which > mandates compatible properties.

Re: [PATCH 3/3] regulator: lp873x: Add support for lp873x PMIC regulators

2016-05-06 Thread Mark Brown
On Fri, May 06, 2016 at 10:13:24AM +0530, Keerthy wrote: > I am using of_platform_populate function in the mfd driver to create > platform devices for the child nodes, in my case regulators. > of_platform_populate in turn calls on to of_platform_bus_create which > mandates compatible properties.

Re: [PATCH 3/3] regulator: lp873x: Add support for lp873x PMIC regulators

2016-05-05 Thread Keerthy
Hi Mark, On Thursday 05 May 2016 09:08 PM, Mark Brown wrote: On Thu, May 05, 2016 at 10:40:40AM +0530, Keerthy wrote: +static const struct of_device_id of_lp873x_match_tbl[] = { + { .compatible = "ti,lp8733-regulators",}, + { .compatible = "ti,lp8732-regulators",}, + {

Re: [PATCH 3/3] regulator: lp873x: Add support for lp873x PMIC regulators

2016-05-05 Thread Keerthy
Hi Mark, On Thursday 05 May 2016 09:08 PM, Mark Brown wrote: On Thu, May 05, 2016 at 10:40:40AM +0530, Keerthy wrote: +static const struct of_device_id of_lp873x_match_tbl[] = { + { .compatible = "ti,lp8733-regulators",}, + { .compatible = "ti,lp8732-regulators",}, + {

Re: [PATCH 3/3] regulator: lp873x: Add support for lp873x PMIC regulators

2016-05-05 Thread Mark Brown
On Thu, May 05, 2016 at 10:40:40AM +0530, Keerthy wrote: > +static const struct of_device_id of_lp873x_match_tbl[] = { > + { .compatible = "ti,lp8733-regulators",}, > + { .compatible = "ti,lp8732-regulators",}, > + { .compatible = "ti,lp873x-regulators",}, > + {}, > +}; There

Re: [PATCH 3/3] regulator: lp873x: Add support for lp873x PMIC regulators

2016-05-05 Thread Mark Brown
On Thu, May 05, 2016 at 10:40:40AM +0530, Keerthy wrote: > +static const struct of_device_id of_lp873x_match_tbl[] = { > + { .compatible = "ti,lp8733-regulators",}, > + { .compatible = "ti,lp8732-regulators",}, > + { .compatible = "ti,lp873x-regulators",}, > + {}, > +}; There

[PATCH 3/3] regulator: lp873x: Add support for lp873x PMIC regulators

2016-05-04 Thread Keerthy
The regulators set consists of 2 BUCKs and 2 LDOs. The output voltages are configurable and are meant to supply power to the main processor and other components. The ramp delay is configurable for both BUCKs. Signed-off-by: Keerthy --- drivers/regulator/Kconfig|

[PATCH 3/3] regulator: lp873x: Add support for lp873x PMIC regulators

2016-05-04 Thread Keerthy
The regulators set consists of 2 BUCKs and 2 LDOs. The output voltages are configurable and are meant to supply power to the main processor and other components. The ramp delay is configurable for both BUCKs. Signed-off-by: Keerthy --- drivers/regulator/Kconfig| 9 ++