diff options
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/Kconfig | 16 | ||||
-rw-r--r-- | drivers/regulator/Makefile | 3 |
2 files changed, 19 insertions, 0 deletions
diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig index 2dc42bbf6fe9..29910e3a3e41 100644 --- a/drivers/regulator/Kconfig +++ b/drivers/regulator/Kconfig | |||
@@ -147,5 +147,21 @@ config REGULATOR_AB3100 | |||
147 | AB3100 analog baseband dealing with power regulators | 147 | AB3100 analog baseband dealing with power regulators |
148 | for the system. | 148 | for the system. |
149 | 149 | ||
150 | config REGULATOR_TPS65023 | ||
151 | tristate "TI TPS65023 Power regulators" | ||
152 | depends on I2C | ||
153 | help | ||
154 | This driver supports TPS65023 voltage regulator chips. TPS65023 provides | ||
155 | three step-down converters and two general-purpose LDO voltage regulators. | ||
156 | It supports TI's software based Class-2 SmartReflex implementation. | ||
157 | |||
158 | config REGULATOR_TPS6507X | ||
159 | tristate "TI TPS6507X Power regulators" | ||
160 | depends on I2C | ||
161 | help | ||
162 | This driver supports TPS6507X voltage regulator chips. TPS6507X provides | ||
163 | three step-down converters and two general-purpose LDO voltage regulators. | ||
164 | It supports TI's software based Class-2 SmartReflex implementation. | ||
165 | |||
150 | endif | 166 | endif |
151 | 167 | ||
diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile index 768b3316d6eb..4257a8683778 100644 --- a/drivers/regulator/Makefile +++ b/drivers/regulator/Makefile | |||
@@ -23,4 +23,7 @@ obj-$(CONFIG_REGULATOR_PCAP) += pcap-regulator.o | |||
23 | obj-$(CONFIG_REGULATOR_MC13783) += mc13783.o | 23 | obj-$(CONFIG_REGULATOR_MC13783) += mc13783.o |
24 | obj-$(CONFIG_REGULATOR_AB3100) += ab3100.o | 24 | obj-$(CONFIG_REGULATOR_AB3100) += ab3100.o |
25 | 25 | ||
26 | obj-$(CONFIG_REGULATOR_TPS65023) += tps65023-regulator.o | ||
27 | obj-$(CONFIG_REGULATOR_TPS6507X) += tps6507x-regulator.o | ||
28 | |||
26 | ccflags-$(CONFIG_REGULATOR_DEBUG) += -DDEBUG | 29 | ccflags-$(CONFIG_REGULATOR_DEBUG) += -DDEBUG |