Skip to content

Commit 30916fa

Browse files
committed
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: d44fa15 ("ARM: OMAP2+: Configure voltage controller for cpcap") Signed-off-by: Tony Lindgren <[email protected]>
1 parent 4c9f486 commit 30916fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/arm/mach-omap2/pmic-cpcap.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,10 @@ int __init omap4_cpcap_init(void)
246246
omap_voltage_register_pmic(voltdm, &omap443x_max8952_mpu);
247247

248248
if (of_machine_is_compatible("motorola,droid-bionic")) {
249-
voltdm = voltdm_lookup("mpu");
249+
voltdm = voltdm_lookup("core");
250250
omap_voltage_register_pmic(voltdm, &omap_cpcap_core);
251251

252-
voltdm = voltdm_lookup("mpu");
252+
voltdm = voltdm_lookup("iva");
253253
omap_voltage_register_pmic(voltdm, &omap_cpcap_iva);
254254
} else {
255255
voltdm = voltdm_lookup("core");

0 commit comments

Comments
 (0)