From 346fd0aa53b35d7f1b85daa42d6e5b783c97a225 Mon Sep 17 00:00:00 2001 From: Zain Wang Date: Fri, 18 Mar 2016 21:17:09 +0800 Subject: [PATCH] regulator: mp8865: add regulator driver for MP8865 Change-Id: I5fa8423e5d1e301a008dcdfd60f93c442f6211a8 Signed-off-by: Zain Wang --- drivers/regulator/Kconfig | 7 +++++++ drivers/regulator/Makefile | 1 + 2 files changed, 8 insertions(+) diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig index 7f6af895e623..655747af13c2 100644 --- a/drivers/regulator/Kconfig +++ b/drivers/regulator/Kconfig @@ -569,6 +569,13 @@ config REGULATOR_MC13892 Say y here to support the regulators found on the Freescale MC13892 PMIC. +config REGULATOR_MP8865 + tristate "MPS MP8865 Power Regulator" + depends on I2C + select REGMAP_I2C + help + This driver supports MP8865 voltage regulator chip. + config REGULATOR_MT6311 tristate "MediaTek MT6311 PMIC" depends on I2C diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile index ffa7f0971060..f995a85c8302 100644 --- a/drivers/regulator/Makefile +++ b/drivers/regulator/Makefile @@ -74,6 +74,7 @@ obj-$(CONFIG_REGULATOR_MAX77802) += max77802-regulator.o obj-$(CONFIG_REGULATOR_MC13783) += mc13783-regulator.o obj-$(CONFIG_REGULATOR_MC13892) += mc13892-regulator.o obj-$(CONFIG_REGULATOR_MC13XXX_CORE) += mc13xxx-regulator-core.o +obj-$(CONFIG_REGULATOR_MP8865) += mp8865-regulator.o obj-$(CONFIG_REGULATOR_MT6311) += mt6311-regulator.o obj-$(CONFIG_REGULATOR_MT6323) += mt6323-regulator.o obj-$(CONFIG_REGULATOR_MT6380) += mt6380-regulator.o