diff options
| author | Tero Kristo <t-kristo@ti.com> | 2012-02-20 12:26:06 +0200 | 
|---|---|---|
| committer | Kevin Hilman <khilman@ti.com> | 2012-03-06 17:35:24 -0800 | 
| commit | f9d29f1617eb1b2f1fd41622bd1a0fc51658d2f0 (patch) | |
| tree | 59959955da9357e0930ddbc2c055e2a804808f8e | |
| parent | b01543dfe67bb1d191998e90d20534dc354de059 (diff) | |
| download | olio-linux-3.10-f9d29f1617eb1b2f1fd41622bd1a0fc51658d2f0.tar.xz olio-linux-3.10-f9d29f1617eb1b2f1fd41622bd1a0fc51658d2f0.zip  | |
arm: omap3: voltage: fix channel configuration
OMAP3 uses the default settings for VDD1 channel, otherwise the settings will
overlap with VDD2 and attempting to modify VDD1 voltage will actually change
VDD2 voltage.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Reviewed-by: Kevin Hilman <khilman@ti.com>
Signed-off-by: Kevin Hilman <khilman@ti.com>
| -rw-r--r-- | arch/arm/mach-omap2/vc3xxx_data.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/vc3xxx_data.c b/arch/arm/mach-omap2/vc3xxx_data.c index a5ec7f8f2ea..5d8eaf31569 100644 --- a/arch/arm/mach-omap2/vc3xxx_data.c +++ b/arch/arm/mach-omap2/vc3xxx_data.c @@ -46,6 +46,7 @@ static struct omap_vc_common omap3_vc_common = {  };  struct omap_vc_channel omap3_vc_mpu = { +	.flags = OMAP_VC_CHANNEL_DEFAULT,  	.common = &omap3_vc_common,  	.smps_sa_reg	 = OMAP3_PRM_VC_SMPS_SA_OFFSET,  	.smps_volra_reg	 = OMAP3_PRM_VC_SMPS_VOL_RA_OFFSET,  |