From 22e8f18980d645f2489fa3f9cb034e416940df66 Mon Sep 17 00:00:00 2001 From: Tero Kristo Date: Thu, 24 Oct 2019 15:00:48 +0530 Subject: power: regulator: tps6236x: add support for tps6236x regulators TPS6236x is a family of step down DC-DC converters optimized for battery powered portable applications for a small solution size. Add a regulator driver for supporting these devices. Signed-off-by: Tero Kristo Signed-off-by: Keerthy --- drivers/power/regulator/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'drivers/power/regulator/Makefile') diff --git a/drivers/power/regulator/Makefile b/drivers/power/regulator/Makefile index 6a3d4bbee4..9198841b4f 100644 --- a/drivers/power/regulator/Makefile +++ b/drivers/power/regulator/Makefile @@ -26,4 +26,5 @@ obj-$(CONFIG_$(SPL_)DM_REGULATOR_LP873X) += lp873x_regulator.o obj-$(CONFIG_$(SPL_)DM_REGULATOR_LP87565) += lp87565_regulator.o obj-$(CONFIG_$(SPL_)DM_REGULATOR_STM32_VREFBUF) += stm32-vrefbuf.o obj-$(CONFIG_DM_REGULATOR_TPS65910) += tps65910_regulator.o +obj-$(CONFIG_DM_REGULATOR_TPS62360) += tps62360_regulator.o obj-$(CONFIG_$(SPL_)DM_REGULATOR_STPMIC1) += stpmic1.o -- cgit From 065a452ae6a11dd9aa3cd0ba185f580c0c81ae2c Mon Sep 17 00:00:00 2001 From: Keerthy Date: Thu, 24 Oct 2019 15:00:51 +0530 Subject: power: regulator: tps65941: add regulator support The driver provides regulator set/get voltage enable/disable functions for tps65941 family of PMICs. Signed-off-by: Keerthy --- drivers/power/regulator/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'drivers/power/regulator/Makefile') diff --git a/drivers/power/regulator/Makefile b/drivers/power/regulator/Makefile index 9198841b4f..b611c901ba 100644 --- a/drivers/power/regulator/Makefile +++ b/drivers/power/regulator/Makefile @@ -28,3 +28,4 @@ obj-$(CONFIG_$(SPL_)DM_REGULATOR_STM32_VREFBUF) += stm32-vrefbuf.o obj-$(CONFIG_DM_REGULATOR_TPS65910) += tps65910_regulator.o obj-$(CONFIG_DM_REGULATOR_TPS62360) += tps62360_regulator.o obj-$(CONFIG_$(SPL_)DM_REGULATOR_STPMIC1) += stpmic1.o +obj-$(CONFIG_DM_REGULATOR_TPS65941) += tps65941_regulator.o -- cgit