diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2018-05-14 10:06:24 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-05-17 15:42:53 +0900 |
commit | e1739e86f0cb9c48e8745a610e6981a4e24cadad (patch) | |
tree | 7634dcc5616e9c13d6ffb89025ca9b3c2f9102af /include | |
parent | 54557ad9737e28b06b632cce723ef2373fe6bf12 (diff) | |
download | linux-e1739e86f0cb9c48e8745a610e6981a4e24cadad.tar.gz linux-e1739e86f0cb9c48e8745a610e6981a4e24cadad.tar.bz2 linux-e1739e86f0cb9c48e8745a610e6981a4e24cadad.zip |
regulator: arizona-ldo1: Look up a descriptor and pass to the core
Instead of passing a global GPIO number, pass a descriptor looked
up with the standard devm_gpiod_get_optional() call.
We have augmented the GPIO core to look up the regulator special
GPIO "wlf,ldoena" in commit 6a537d48461d
"gpio: of: Support regulator nonstandard GPIO properties".
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/regulator/arizona-ldo1.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/regulator/arizona-ldo1.h b/include/linux/regulator/arizona-ldo1.h index c685f1277c63..fe74ab9990e6 100644 --- a/include/linux/regulator/arizona-ldo1.h +++ b/include/linux/regulator/arizona-ldo1.h @@ -14,9 +14,6 @@ struct regulator_init_data; struct arizona_ldo1_pdata { - /** GPIO controlling LDOENA, if any */ - int ldoena; - /** Regulator configuration for LDO1 */ const struct regulator_init_data *init_data; }; |