Commit 3887ae26 authored by Arun K S's avatar Arun K S Committed by Tony Lindgren

omap2430sdp_mmc_fix

The PRCM (0x490022E8)register was overwritten by the MMC code
which made the other peripherals like USB etc to stop working.
The following patch fixes the modification of PRCM register by
the MMC code. This patch is tested here on the OMAP2430 SDP board.
Signed-off-by: default avatarArun K S <arunks@mistralsolutions.com>
Ack-by: default avatarMadhusudhan Chikkature Rajashekar" <madhu.cr@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 5ef9027e
......@@ -176,7 +176,7 @@ static int sdp_mmc_set_power(struct device *dev, int slot, int power_on,
case MMC_VDD_32_33:
vdd_sel = VSEL_3V;
if (cpu_is_omap24xx())
devconf = (reg | (1 << 31));
devconf = (devconf | (1 << 31));
break;
case MMC_VDD_165_195:
vdd_sel = VSEL_18V;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment