From 50151fc7a328f4d782c27e970341627e489b734e Mon Sep 17 00:00:00 2001 From: XiaoDong Huang Date: Mon, 23 Apr 2018 17:59:28 +0800 Subject: [PATCH] regulator: tps549b22: add TI TPS549b22 support Change-Id: I7550fc9f78a30b5d8ff705403ad91cfd8727fad6 Signed-off-by: XiaoDong Huang --- drivers/regulator/Kconfig | 7 +++++++ drivers/regulator/Makefile | 1 + 2 files changed, 8 insertions(+) diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig index 9c73c8c4902d..73849cb0a401 100644 --- a/drivers/regulator/Kconfig +++ b/drivers/regulator/Kconfig @@ -855,6 +855,13 @@ config REGULATOR_TPS51632 The voltage output can be configure through I2C interface or PWM interface. +config REGULATOR_TPS549B22 + tristate "TI TPS549B22 Power regulators" + depends on I2C + help + This driver supports TPS549B22 voltage regulator chip. + The voltage output can be configure through I2C interface. + config REGULATOR_TPS6105X tristate "TI TPS6105X Power regulators" depends on TPS6105X diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile index b3da228bb7d5..16a815af2768 100644 --- a/drivers/regulator/Makefile +++ b/drivers/regulator/Makefile @@ -106,6 +106,7 @@ obj-$(CONFIG_REGULATOR_STM32_VREFBUF) += stm32-vrefbuf.o obj-$(CONFIG_REGULATOR_STW481X_VMMC) += stw481x-vmmc.o obj-$(CONFIG_REGULATOR_SY8106A) += sy8106a-regulator.o obj-$(CONFIG_REGULATOR_TI_ABB) += ti-abb-regulator.o +obj-$(CONFIG_REGULATOR_TPS549B22) += tps549b22-regulator.o obj-$(CONFIG_REGULATOR_TPS6105X) += tps6105x-regulator.o obj-$(CONFIG_REGULATOR_TPS62360) += tps62360-regulator.o obj-$(CONFIG_REGULATOR_TPS65023) += tps65023-regulator.o