aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k/include/asm/mmu.h
diff options
context:
space:
mode:
authorGreg Ungerer <gerg@uclinux.org>2009-01-29 00:57:30 -0500
committerGreg Ungerer <gerg@uclinux.org>2009-03-24 01:17:42 -0400
commit54cae79e52d6a72faa3d6993dcaba560bfac8db3 (patch)
treed8661c4f581048d6dd7cc7b00d2ce7a7a08ddf4b /arch/m68k/include/asm/mmu.h
parentbf7058f04ab74061b75a166e30ae0a7e617f0430 (diff)
m68k: merge the mmu and non-mmu versions of mmu.h
Trivial merge of the contents of mmu and non-mmu versions of mmu.h Signed-off-by: Greg Ungerer <gerg@uclinux.org> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/include/asm/mmu.h')
-rw-r--r--arch/m68k/include/asm/mmu.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/arch/m68k/include/asm/mmu.h b/arch/m68k/include/asm/mmu.h
index a81d3946675f..8a11a63ee15a 100644
--- a/arch/m68k/include/asm/mmu.h
+++ b/arch/m68k/include/asm/mmu.h
@@ -1,5 +1,13 @@
1#ifdef __uClinux__ 1#ifndef __MMU_H
2#include "mmu_no.h" 2#define __MMU_H
3
4#ifdef CONFIG_MMU
5/* Default "unsigned long" context */
6typedef unsigned long mm_context_t;
3#else 7#else
4#include "mmu_mm.h" 8typedef struct {
9 unsigned long end_brk;
10} mm_context_t;
11#endif
12
5#endif 13#endif