Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Regulator: Adding TPS65023 and TPS6507x in Kconfig and Makefile

Adding TPS65023 and TPS6507x regulator driver support in
drivers/regulator/Makefile and drivers/regulator/Kconfig

Signed-off-by: Anuj Aggarwal <anuj.aggarwal@ti.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>

authored by

Anuj Aggarwal and committed by
Liam Girdwood
2de79850 3fa5b8e0

+19
+16
drivers/regulator/Kconfig
··· 147 147 AB3100 analog baseband dealing with power regulators 148 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 166 endif 151 167
+3
drivers/regulator/Makefile
··· 23 23 obj-$(CONFIG_REGULATOR_MC13783) += mc13783.o 24 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 29 ccflags-$(CONFIG_REGULATOR_DEBUG) += -DDEBUG