diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-07-11 13:36:25 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-07-11 13:36:25 -0400 |
commit | 040f43e0bf70935cbe8a775110206d11367e11db (patch) | |
tree | 9d320e89b0d68cd372b8e2c1e19461fa8916a538 | |
parent | 59f002964f4e6668a0132cd796b82f7f8a4803f0 (diff) |
sh64: Don't use PHYSADDR() for output_addr calculation.
Opencode the MEMORY_START offset directly, sh64 uses a slightly different
calculation.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/sh/boot/compressed/misc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/sh/boot/compressed/misc.c b/arch/sh/boot/compressed/misc.c index 4eb27e61f8e3..fd56a71ca9d9 100644 --- a/arch/sh/boot/compressed/misc.c +++ b/arch/sh/boot/compressed/misc.c | |||
@@ -128,10 +128,14 @@ void decompress_kernel(void) | |||
128 | { | 128 | { |
129 | unsigned long output_addr; | 129 | unsigned long output_addr; |
130 | 130 | ||
131 | #ifdef CONFIG_SUPERH64 | ||
132 | output_addr = (CONFIG_MEMORY_START + 0x2000); | ||
133 | #else | ||
131 | output_addr = PHYSADDR((unsigned long)&_text+PAGE_SIZE); | 134 | output_addr = PHYSADDR((unsigned long)&_text+PAGE_SIZE); |
132 | #ifdef CONFIG_29BIT | 135 | #ifdef CONFIG_29BIT |
133 | output_addr |= P2SEG; | 136 | output_addr |= P2SEG; |
134 | #endif | 137 | #endif |
138 | #endif | ||
135 | 139 | ||
136 | output = (unsigned char *)output_addr; | 140 | output = (unsigned char *)output_addr; |
137 | free_mem_ptr = (unsigned long)&_end; | 141 | free_mem_ptr = (unsigned long)&_end; |