diff options
author | Paul Mundt <lethal@linux-sh.org> | 2006-12-25 04:28:33 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-02-12 20:54:44 -0500 |
commit | 2c081e71baadccb4543815ef42c5290ac2961546 (patch) | |
tree | 322cb62b679a46e80f3eb2c954bee4ff5ffe5dc3 /arch/sh/boards/renesas/r7780rp/setup.c | |
parent | 703404ea441fc198d03ca3e9edbac6e09b5415f4 (diff) |
sh: Fixup R7780RP iVDR clock enable.
The iVDR clock enable bit happens to actually reside in a rather
different place than what is documented, so fix it up accordingly.
This fixes up SATA boot for some of the R7780RP boards that didn't
default-enable the clock in the loader.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards/renesas/r7780rp/setup.c')
-rw-r--r-- | arch/sh/boards/renesas/r7780rp/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/boards/renesas/r7780rp/setup.c b/arch/sh/boards/renesas/r7780rp/setup.c index 9f89c8de9db9..b48f19f512ca 100644 --- a/arch/sh/boards/renesas/r7780rp/setup.c +++ b/arch/sh/boards/renesas/r7780rp/setup.c | |||
@@ -148,7 +148,7 @@ static void __init r7780rp_setup(char **cmdline_p) | |||
148 | #ifndef CONFIG_SH_R7780MP | 148 | #ifndef CONFIG_SH_R7780MP |
149 | ctrl_outw(0x0001, PA_SDPOW); /* SD Power ON */ | 149 | ctrl_outw(0x0001, PA_SDPOW); /* SD Power ON */ |
150 | #endif | 150 | #endif |
151 | ctrl_outw(ctrl_inw(PA_IVDRCTL) | 0x0100, PA_IVDRCTL); /* Si13112 */ | 151 | ctrl_outw(ctrl_inw(PA_IVDRCTL) | 0x01, PA_IVDRCTL); /* Si13112 */ |
152 | 152 | ||
153 | pm_power_off = r7780rp_power_off; | 153 | pm_power_off = r7780rp_power_off; |
154 | } | 154 | } |