diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2020-12-05 01:40:57 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-01-13 12:36:19 +0100 |
commit | 3acb64c07e95a75dc0af0bc958f2d09a44a9fd0d (patch) | |
tree | 6f867b7569a1450997aab661526f60e57f5e8fe3 /drivers/regulator/ab8500-ext.c | |
parent | regulator: ab8500: Remove unused platform data (diff) | |
download | linux-3acb64c07e95a75dc0af0bc958f2d09a44a9fd0d.tar.xz linux-3acb64c07e95a75dc0af0bc958f2d09a44a9fd0d.zip |
regulator: ab8500: Decomission platform data header
The platform data header was only used to pass platform
data from board files. We now populate the regulators
exclusively from device tree, so the header contents can
be moved into the regulator drivers.
Cc: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20201205004057.1712753-2-linus.walleij@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/ab8500-ext.c')
-rw-r--r-- | drivers/regulator/ab8500-ext.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/drivers/regulator/ab8500-ext.c b/drivers/regulator/ab8500-ext.c index 05f9531bd108..4f26952caa56 100644 --- a/drivers/regulator/ab8500-ext.c +++ b/drivers/regulator/ab8500-ext.c @@ -22,7 +22,18 @@ #include <linux/regulator/of_regulator.h> #include <linux/mfd/abx500.h> #include <linux/mfd/abx500/ab8500.h> -#include <linux/regulator/ab8500.h> + +/* AB8500 external regulators */ +enum ab8500_ext_regulator_id { + AB8500_EXT_SUPPLY1, + AB8500_EXT_SUPPLY2, + AB8500_EXT_SUPPLY3, + AB8500_NUM_EXT_REGULATORS, +}; + +struct ab8500_ext_regulator_cfg { + bool hwreq; /* requires hw mode or high power mode */ +}; /* supply for VextSupply3 */ static struct regulator_consumer_supply ab8500_ext_supply3_consumers[] = { |