diff options
author | Oskari Lemmela <oskari@lemmela.net> | 2018-11-20 19:52:10 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-02-27 10:08:51 +0100 |
commit | 49542ac0c460e85a1c021d2f8ae854b6e1e80318 (patch) | |
tree | 98f4bd71b9ac29e4cf210a806bbf4aeb440206c0 | |
parent | 45acbfa661bb985acecdedee6117fd87b423f91b (diff) | |
download | linux-rpi3-49542ac0c460e85a1c021d2f8ae854b6e1e80318.tar.gz linux-rpi3-49542ac0c460e85a1c021d2f8ae854b6e1e80318.tar.bz2 linux-rpi3-49542ac0c460e85a1c021d2f8ae854b6e1e80318.zip |
mfd: axp20x: Add AC power supply cell for AXP813
[ Upstream commit 4a19f9a65375ca9781b3ca9e810ece92edfc3e78 ]
As axp20x-ac-power-supply now supports AXP813, add a cell for it.
Signed-off-by: Oskari Lemmela <oskari@lemmela.net>
Reviewed-by: Quentin Schulz <quentin.schulz@bootlin.com>
Reviewed-by: Chen-Yu Tsai <wens@csie.org>
Tested-by: Vasily Khoruzhick <anarsoul@gmail.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | drivers/mfd/axp20x.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/mfd/axp20x.c b/drivers/mfd/axp20x.c index 0be511dd93d0..dfc3cff1d08b 100644 --- a/drivers/mfd/axp20x.c +++ b/drivers/mfd/axp20x.c @@ -778,6 +778,11 @@ static const struct mfd_cell axp813_cells[] = { }, { .name = "axp20x-battery-power-supply", .of_compatible = "x-powers,axp813-battery-power-supply", + }, { + .name = "axp20x-ac-power-supply", + .of_compatible = "x-powers,axp813-ac-power-supply", + .num_resources = ARRAY_SIZE(axp20x_ac_power_supply_resources), + .resources = axp20x_ac_power_supply_resources, }, }; |