aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-arm/mmu.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-arm/mmu.h')
-rw-r--r--include/asm-arm/mmu.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/asm-arm/mmu.h b/include/asm-arm/mmu.h
new file mode 100644
index 000000000000..a457cb71984f
--- /dev/null
+++ b/include/asm-arm/mmu.h
@@ -0,0 +1,16 @@
1#ifndef __ARM_MMU_H
2#define __ARM_MMU_H
3
4typedef struct {
5#if __LINUX_ARM_ARCH__ >= 6
6 unsigned int id;
7#endif
8} mm_context_t;
9
10#if __LINUX_ARM_ARCH__ >= 6
11#define ASID(mm) ((mm)->context.id & 255)
12#else
13#define ASID(mm) (0)
14#endif
15
16#endif