summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/regulator/tps65090-regulator.c5
-rw-r--r--include/linux/regulator/tps65090-regulator.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/drivers/regulator/tps65090-regulator.c b/drivers/regulator/tps65090-regulator.c
index 4ec3401af6a5..f633897f051c 100644
--- a/drivers/regulator/tps65090-regulator.c
+++ b/drivers/regulator/tps65090-regulator.c
@@ -99,6 +99,9 @@ static struct regulator_ops tps65090_ops = {
.is_enabled = tps65090_reg_is_enabled,
};
+static struct regulator_ops tps65090_ldo_ops = {
+};
+
#define tps65090_REG(_id, _en_reg, _en_bit, _ops) \
{ \
.reg_en_reg = _en_reg, \
@@ -117,6 +120,8 @@ static struct tps65090_regulator_info TPS65090_regulator_info[] = {
tps65090_REG(DCDC1, 12, 0, tps65090_ops),
tps65090_REG(DCDC2, 13, 0, tps65090_ops),
tps65090_REG(DCDC3, 14, 0, tps65090_ops),
+ tps65090_REG(LDO1, 0, 0, tps65090_ldo_ops),
+ tps65090_REG(LDO2, 0, 0, tps65090_ldo_ops),
tps65090_REG(FET1, 15, 0, tps65090_ops),
tps65090_REG(FET2, 16, 0, tps65090_ops),
tps65090_REG(FET3, 17, 0, tps65090_ops),
diff --git a/include/linux/regulator/tps65090-regulator.h b/include/linux/regulator/tps65090-regulator.h
index 2b7d0a18f836..d0f6623e6c35 100644
--- a/include/linux/regulator/tps65090-regulator.h
+++ b/include/linux/regulator/tps65090-regulator.h
@@ -27,6 +27,8 @@ enum {
TPS65090_REGULATOR_DCDC1,
TPS65090_REGULATOR_DCDC2,
TPS65090_REGULATOR_DCDC3,
+ TPS65090_REGULATOR_LDO1,
+ TPS65090_REGULATOR_LDO2,
TPS65090_REGULATOR_FET1,
TPS65090_REGULATOR_FET2,
TPS65090_REGULATOR_FET3,