diff options
author | Greg Ungerer <gerg@uclinux.org> | 2011-10-19 20:17:46 +1000 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2011-12-30 10:20:48 +1000 |
commit | fbe3364ac4fa82caa585f98e4a525946d2cc21f4 (patch) | |
tree | 0926b9d0493c04bfe56b83972c2eaf54be1575ef /arch/m68k | |
parent | 3f0060b0e8db431cf2c76b9a94774f0efd9ab956 (diff) | |
download | op-kernel-dev-fbe3364ac4fa82caa585f98e4a525946d2cc21f4.zip op-kernel-dev-fbe3364ac4fa82caa585f98e4a525946d2cc21f4.tar.gz |
m68k: add ColdFire with MMU enabled support to the m68k mem init code
The ColdFire has similar setup requirements to the SUN3 code, so we
use that.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Matt Waddel <mwaddel@yahoo.com>
Acked-by: Kurt Mahan <kmahan@xmission.com>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/mm/init_mm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/mm/init_mm.c b/arch/m68k/mm/init_mm.c index 85c5f0e..89f3b20 100644 --- a/arch/m68k/mm/init_mm.c +++ b/arch/m68k/mm/init_mm.c @@ -139,7 +139,7 @@ void __init mem_init(void) } } -#ifndef CONFIG_SUN3 +#if !defined(CONFIG_SUN3) && !defined(CONFIG_COLDFIRE) /* insert pointer tables allocated so far into the tablelist */ init_pointer_table((unsigned long)kernel_pg_dir); for (i = 0; i < PTRS_PER_PGD; i++) { |