diff options
author | Martin Fuzzey <martin.fuzzey@flowbird.group> | 2020-01-14 15:56:17 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-27 19:54:20 -0500 |
commit | 7ae22d8479c9e832c0a9a18de705553535a1a9f6 (patch) | |
tree | e1fd1c923cc3fc31056c3d565a2131d93e7d8bd9 /drivers/power/regulator/Makefile | |
parent | 483880c490b0fbd4e4be5a93f55947a42066f825 (diff) |
power: regulator: add driver for Dialog DA9063 PMIC
Add a driver for the regulators in the the DA9063 PMIC.
Robert Beckett: move regulator modes to header so board code can set
modes. Correct mode mask used in ldo_set_mode.
Add an option CONFIG_SPL_DM_REGULATOR_DA9063.
Signed-off-by: Martin Fuzzey <martin.fuzzey@flowbird.group>
Signed-off-by: Robert Beckett <bob.beckett@collabora.com>
Diffstat (limited to 'drivers/power/regulator/Makefile')
-rw-r--r-- | drivers/power/regulator/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/regulator/Makefile b/drivers/power/regulator/Makefile index b611c901ba..9d58112dcb 100644 --- a/drivers/power/regulator/Makefile +++ b/drivers/power/regulator/Makefile @@ -7,6 +7,7 @@ obj-$(CONFIG_$(SPL_)DM_REGULATOR) += regulator-uclass.o obj-$(CONFIG_REGULATOR_ACT8846) += act8846.o obj-$(CONFIG_REGULATOR_AS3722) += as3722_regulator.o +obj-$(CONFIG_$(SPL_)DM_REGULATOR_DA9063) += da9063.o obj-$(CONFIG_DM_REGULATOR_MAX77686) += max77686.o obj-$(CONFIG_$(SPL_)DM_PMIC_PFUZE100) += pfuze100.o obj-$(CONFIG_$(SPL_)DM_REGULATOR_BD71837) += bd71837.o |