diff options
author | Tapani <tapani@technexion.com> | 2013-02-08 18:25:01 +0800 |
---|---|---|
committer | Tapani <tapani@technexion.com> | 2013-02-08 18:25:01 +0800 |
commit | d183c98126a2cfb656591a044e36b3d6f7b890fb (patch) | |
tree | 5aaf667ab42b5a038d3ed71a1a8c51a23292a397 | |
parent | 3b99a26aed88bc7c47d0e4d7892c580feafc0272 (diff) |
Fix regulator name mismatch.
The JB kernel and ICS kernels use different default names, and the
merge between the two introduced a mismatch. This reverts to the
names used in the JB kernel.
-rw-r--r-- | arch/arm/mach-mx6/cpu_regulator-mx6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mx6/cpu_regulator-mx6.c b/arch/arm/mach-mx6/cpu_regulator-mx6.c index 700e8667d110..c5e6400bb97e 100644 --- a/arch/arm/mach-mx6/cpu_regulator-mx6.c +++ b/arch/arm/mach-mx6/cpu_regulator-mx6.c @@ -83,7 +83,7 @@ void mx6_cpu_regulator_init(void) if (enable_ldo_mode != LDO_MODE_BYPASSED) { gp_reg_id = "cpu_vddgp"; soc_reg_id = "cpu_vddsoc"; - pu_reg_id = "cpu_vddgpu"; + pu_reg_id = "cpu_vddvpu"; } printk(KERN_INFO "cpu regulator init ldo=%x\n", enable_ldo_mode); |