summaryrefslogtreecommitdiffstats
path: root/kernel/arch/m68k/include/asm/mmu.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/arch/m68k/include/asm/mmu.h')
-rw-r--r--kernel/arch/m68k/include/asm/mmu.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/kernel/arch/m68k/include/asm/mmu.h b/kernel/arch/m68k/include/asm/mmu.h
new file mode 100644
index 000000000..8a11a63ee
--- /dev/null
+++ b/kernel/arch/m68k/include/asm/mmu.h
@@ -0,0 +1,13 @@
+#ifndef __MMU_H
+#define __MMU_H
+
+#ifdef CONFIG_MMU
+/* Default "unsigned long" context */
+typedef unsigned long mm_context_t;
+#else
+typedef struct {
+ unsigned long end_brk;
+} mm_context_t;
+#endif
+
+#endif