Commit 6ed2db98 authored by Greg Ungerer's avatar Greg Ungerer

m68knommu: use asm-generic/mmu.h for nommu setups

The nommu case defines its own local mm_context_t structure. There is
nothing special or different about the m68knommu version of this and it
can easily use the common asm-generic version.

Remove the local mmu_context struct and include the asm-generic version
instead. This will also make it easier to support ELF format executables
in the future (since the asm-generic version has support for this
already).
Signed-off-by: default avatarGreg Ungerer <gerg@linux-m68k.org>
Reviewed-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
parent 968f0e1c
...@@ -6,9 +6,7 @@ ...@@ -6,9 +6,7 @@
/* Default "unsigned long" context */ /* Default "unsigned long" context */
typedef unsigned long mm_context_t; typedef unsigned long mm_context_t;
#else #else
typedef struct { #include <asm-generic/mmu.h>
unsigned long end_brk;
} mm_context_t;
#endif #endif
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment