diff options
Diffstat (limited to 'arch/sh/boards/board-sh7785lcr.c')
-rw-r--r-- | arch/sh/boards/board-sh7785lcr.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/arch/sh/boards/board-sh7785lcr.c b/arch/sh/boards/board-sh7785lcr.c index 7eea90db6cea..511de38d2046 100644 --- a/arch/sh/boards/board-sh7785lcr.c +++ b/arch/sh/boards/board-sh7785lcr.c | |||
@@ -332,8 +332,15 @@ static void __init sh7785lcr_setup(char **cmdline_p) | |||
332 | pm_power_off = sh7785lcr_power_off; | 332 | pm_power_off = sh7785lcr_power_off; |
333 | 333 | ||
334 | /* sm501 DRAM configuration */ | 334 | /* sm501 DRAM configuration */ |
335 | sm501_reg = (void __iomem *)0xb3e00000 + SM501_DRAM_CONTROL; | 335 | sm501_reg = ioremap_fixed(SM107_REG_ADDR, SM501_DRAM_CONTROL, |
336 | writel(0x000307c2, sm501_reg); | 336 | PAGE_KERNEL); |
337 | if (!sm501_reg) { | ||
338 | printk(KERN_ERR "%s: ioremap error.\n", __func__); | ||
339 | return; | ||
340 | } | ||
341 | |||
342 | writel(0x000307c2, sm501_reg + SM501_DRAM_CONTROL); | ||
343 | iounmap_fixed(sm501_reg); | ||
337 | } | 344 | } |
338 | 345 | ||
339 | /* Return the board specific boot mode pin configuration */ | 346 | /* Return the board specific boot mode pin configuration */ |