diff options
author | Tom Fitzhenry <[email protected]> | 2023-01-02 22:11:47 +1100 |
---|---|---|
committer | Lee Jones <[email protected]> | 2023-02-22 08:25:51 +0000 |
commit | 5d69b181cd0db10dc8327d28ce837b3623cd531a (patch) | |
tree | 852f9f2cbc41d02a5099b9f3e2155b9a8b567ca8 | |
parent | 28e1958009cf73166b13551d1b52c6b907f993d8 (diff) |
mfd: rk808: Re-add rk808-clkout to RK818
Fixes RK818 (e.g. on Pinephone Pro) to register its clock, without which
dependent devices (e.g. wifi/BT, via sdio-wifi-pwrseq) fail to probe.
This line was removed in commit 3633daacea2e
("mfd: rk808: Permit having multiple PMIC instances"), but only from RK818.
Fixes: 3633daacea2e ("mfd: rk808: Permit having multiple PMIC instances")
Signed-off-by: Tom Fitzhenry <[email protected]>
Reviewed-by: Javier Martinez Canillas <[email protected]>
Acked-by: Neil Armstrong <[email protected]>
Signed-off-by: Lee Jones <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | drivers/mfd/rk808.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/rk808.c b/drivers/mfd/rk808.c index f44fc3f080a8..0f22ef61e817 100644 --- a/drivers/mfd/rk808.c +++ b/drivers/mfd/rk808.c @@ -189,6 +189,7 @@ static const struct mfd_cell rk817s[] = { }; static const struct mfd_cell rk818s[] = { + { .name = "rk808-clkout", .id = PLATFORM_DEVID_NONE, }, { .name = "rk808-regulator", .id = PLATFORM_DEVID_NONE, }, { .name = "rk808-rtc", |