summaryrefslogtreecommitdiff
path: root/arch/arm/mach-omap2/pmic-cpcap.c
diff options
context:
space:
mode:
authorTony Lindgren <tony@atomide.com>2021-03-14 18:41:01 +0200
committerTony Lindgren <tony@atomide.com>2021-03-17 15:15:45 +0200
commit30916faa1a6009122e10d0c42338b8db44a36fde (patch)
tree4209f18dc0a90bfc4911ca42e4b38a28d47fb53c /arch/arm/mach-omap2/pmic-cpcap.c
parent4c9f4865f4604744d4f1a43db22ac6ec9dc8e587 (diff)
ARM: OMAP4: Fix PMIC voltage domains for bionic
We are now registering the mpu domain three times instead of registering mpu, core and iva domains like we should. Fixes: d44fa156dcb2 ("ARM: OMAP2+: Configure voltage controller for cpcap") Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/pmic-cpcap.c')
-rw-r--r--arch/arm/mach-omap2/pmic-cpcap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/pmic-cpcap.c b/arch/arm/mach-omap2/pmic-cpcap.c
index 09076ad0576d..668dc84fd31e 100644
--- a/arch/arm/mach-omap2/pmic-cpcap.c
+++ b/arch/arm/mach-omap2/pmic-cpcap.c
@@ -246,10 +246,10 @@ int __init omap4_cpcap_init(void)
omap_voltage_register_pmic(voltdm, &omap443x_max8952_mpu);
if (of_machine_is_compatible("motorola,droid-bionic")) {
- voltdm = voltdm_lookup("mpu");
+ voltdm = voltdm_lookup("core");
omap_voltage_register_pmic(voltdm, &omap_cpcap_core);
- voltdm = voltdm_lookup("mpu");
+ voltdm = voltdm_lookup("iva");
omap_voltage_register_pmic(voltdm, &omap_cpcap_iva);
} else {
voltdm = voltdm_lookup("core");