ASR_BASE

Change-Id: Icf3719cc0afe3eeb3edc7fa80a2eb5199ca9dda1
diff --git a/marvell/linux/arch/m68k/include/asm/mmu.h b/marvell/linux/arch/m68k/include/asm/mmu.h
new file mode 100644
index 0000000..5c15aac
--- /dev/null
+++ b/marvell/linux/arch/m68k/include/asm/mmu.h
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#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