/arch/m68k/include/asm/mmu.h
C++ Header | 13 lines | 10 code | 2 blank | 1 comment | 0 complexity | 2dddada2f05810fb8aad7215403747d6 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.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