diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-09-27 05:22:21 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-09-27 05:22:21 -0400 |
commit | 675bd7804cb53998a57f96d4133856c29213cabd (patch) | |
tree | ad1e8ae6f063350c3314ce91a936c82ff03d0da8 /arch/sh/kernel | |
parent | cb7af21f7d370edb3a6a6d3e15cb17c8fd61591e (diff) |
sh: Fix URAM start address on SH7785.
Not all of the SH-X2 URAM blocks are mapped in the same place,
SH7785 happens to map it on the opposite end of the address space
from SH7722, correct the addresses.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel')
-rw-r--r-- | arch/sh/kernel/cpu/sh4a/setup-sh7785.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7785.c b/arch/sh/kernel/cpu/sh4a/setup-sh7785.c index c65e1b522186..39b215d6cee5 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7785.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7785.c | |||
@@ -351,5 +351,5 @@ void __init plat_irq_setup_pins(int mode) | |||
351 | void __init plat_mem_setup(void) | 351 | void __init plat_mem_setup(void) |
352 | { | 352 | { |
353 | /* Register the URAM space as Node 1 */ | 353 | /* Register the URAM space as Node 1 */ |
354 | setup_bootmem_node(1, 0x055f0000, 0x05610000); | 354 | setup_bootmem_node(1, 0xe55f0000, 0xe5610000); |
355 | } | 355 | } |