diff options
Diffstat (limited to 'arch/m68k/include/asm/mmu.h')
-rw-r--r-- | arch/m68k/include/asm/mmu.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/m68k/include/asm/mmu.h b/arch/m68k/include/asm/mmu.h new file mode 100644 index 000000000..8a11a63ee --- /dev/null +++ b/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 |