aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorMilo Kim <milo.kim@ti.com>2017-02-28 16:50:41 +0900
committerMark Brown <broonie@kernel.org>2017-03-07 14:59:22 +0100
commit9503b5085fd0e7cfc6e32b1a473a997303d7e26a (patch)
tree694b6c3e7d21bee05201db0c576193b267cd4295 /drivers/regulator
parentLinux 4.11-rc1 (diff)
downloadlinux-dev-9503b5085fd0e7cfc6e32b1a473a997303d7e26a.tar.xz
linux-dev-9503b5085fd0e7cfc6e32b1a473a997303d7e26a.zip
regulator: lm363x: Use generic DT property name for external control pins
Vpos and Vneg LDOs can be enabled or disabled by external GPIOs. Use general DT property 'enable-gpios' for this usage. Two enable pins are differentiable by selecting the index number. Signed-off-by: Milo Kim <milo.kim@ti.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/lm363x-regulator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/lm363x-regulator.c b/drivers/regulator/lm363x-regulator.c
index f53e63301a20..ce5f7d9ad475 100644
--- a/drivers/regulator/lm363x-regulator.c
+++ b/drivers/regulator/lm363x-regulator.c
@@ -227,9 +227,9 @@ static int lm363x_regulator_of_get_enable_gpio(struct device_node *np, int id)
*/
switch (id) {
case LM3632_LDO_POS:
- return of_get_named_gpio(np, "ti,lcm-en1-gpio", 0);
+ return of_get_named_gpio(np, "enable-gpios", 0);
case LM3632_LDO_NEG:
- return of_get_named_gpio(np, "ti,lcm-en2-gpio", 0);
+ return of_get_named_gpio(np, "enable-gpios", 1);
default:
return -EINVAL;
}