diff options
author | Paul Mundt <lethal@linux-sh.org> | 2008-02-13 20:18:01 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-02-14 14:22:12 +0900 |
commit | db02612b4eb6136f06a924e6aa28752a841ad1bc (patch) | |
tree | ba25a4bc48b9a3de4eda5a48beb3ea53430e8c4c /arch/sh | |
parent | c7a49dd42d15f066d13e26c24c22c600b58528e0 (diff) | |
download | blackbird-obmc-linux-db02612b4eb6136f06a924e6aa28752a841ad1bc.tar.gz blackbird-obmc-linux-db02612b4eb6136f06a924e6aa28752a841ad1bc.zip |
sh: __uncached_start only on sh32.
sh64 doesn't provide __uncached_start, so don't reference it
unconditionally.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/mm/init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sh/mm/init.c b/arch/sh/mm/init.c index 2918c6b14659..e2ed6dd252b9 100644 --- a/arch/sh/mm/init.c +++ b/arch/sh/mm/init.c @@ -203,6 +203,7 @@ void __init paging_init(void) free_area_init_nodes(max_zone_pfns); +#ifdef CONFIG_SUPERH32 /* Set up the uncached fixmap */ set_fixmap_nocache(FIX_UNCACHED, __pa(&__uncached_start)); @@ -214,6 +215,7 @@ void __init paging_init(void) */ cached_to_uncached = P2SEG - P1SEG; #endif +#endif } static struct kcore_list kcore_mem, kcore_vmalloc; |