xref: /openbmc/linux/arch/arc/include/asm/mmu.h (revision ee89bd6b)
1 /*
2  * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  */
8 
9 #ifndef _ASM_ARC_MMU_H
10 #define _ASM_ARC_MMU_H
11 
12 #ifndef __ASSEMBLY__
13 
14 typedef struct {
15 	unsigned long asid;	/* Pvt Addr-Space ID for mm */
16 #ifdef CONFIG_ARC_TLB_DBG
17 	struct task_struct *tsk;
18 #endif
19 } mm_context_t;
20 
21 #endif
22 
23 #endif
24