xref: /linux/arch/um/include/asm/mmu.h (revision a5d2cfe749e2917266956751262328da35e0925d)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
4  */
5 
6 #ifndef __ARCH_UM_MMU_H
7 #define __ARCH_UM_MMU_H
8 
9 #include <mm_id.h>
10 
11 typedef struct mm_context {
12 	struct mm_id id;
13 } mm_context_t;
14 
15 #endif
16