diff options
author | Carl Philipp Klemm <philipp@uvos.xyz> | 2020-12-07 20:58:01 +0100 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2020-12-08 15:56:24 +0200 |
commit | c0bc969c176b10598b31d5d1a5edf9a5261f0a9f (patch) | |
tree | f5aab2853a04f8ea0e0ee89c3287acbf291b3ab0 | |
parent | ec76c2eea903947202098090bbe07a739b5246e9 (diff) | |
download | lwn-c0bc969c176b10598b31d5d1a5edf9a5261f0a9f.tar.gz lwn-c0bc969c176b10598b31d5d1a5edf9a5261f0a9f.zip |
ARM: omap2: pmic-cpcap: fix maximum voltage to be consistent with defaults on xt875
xt875 comes up with a iva voltage of 1375000 and android runs at this too. fix
maximum voltage to be consistent with this.
Signed-off-by: Carl Philipp Klemm <philipp@uvos.xyz>
Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r-- | arch/arm/mach-omap2/pmic-cpcap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/pmic-cpcap.c b/arch/arm/mach-omap2/pmic-cpcap.c index eab281a5fc9f..09076ad0576d 100644 --- a/arch/arm/mach-omap2/pmic-cpcap.c +++ b/arch/arm/mach-omap2/pmic-cpcap.c @@ -71,7 +71,7 @@ static struct omap_voltdm_pmic omap_cpcap_iva = { .vp_vstepmin = OMAP4_VP_VSTEPMIN_VSTEPMIN, .vp_vstepmax = OMAP4_VP_VSTEPMAX_VSTEPMAX, .vddmin = 900000, - .vddmax = 1350000, + .vddmax = 1375000, .vp_timeout_us = OMAP4_VP_VLIMITTO_TIMEOUT_US, .i2c_slave_addr = 0x44, .volt_reg_addr = 0x0, |