diff options
Diffstat (limited to 'include/asm-arm/mmu.h')
-rw-r--r-- | include/asm-arm/mmu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-arm/mmu.h b/include/asm-arm/mmu.h index fe2a23b5627b..53099d4ee421 100644 --- a/include/asm-arm/mmu.h +++ b/include/asm-arm/mmu.h | |||
@@ -4,13 +4,13 @@ | |||
4 | #ifdef CONFIG_MMU | 4 | #ifdef CONFIG_MMU |
5 | 5 | ||
6 | typedef struct { | 6 | typedef struct { |
7 | #if __LINUX_ARM_ARCH__ >= 6 | 7 | #ifdef CONFIG_CPU_HAS_ASID |
8 | unsigned int id; | 8 | unsigned int id; |
9 | #endif | 9 | #endif |
10 | unsigned int kvm_seq; | 10 | unsigned int kvm_seq; |
11 | } mm_context_t; | 11 | } mm_context_t; |
12 | 12 | ||
13 | #if __LINUX_ARM_ARCH__ >= 6 | 13 | #ifdef CONFIG_CPU_HAS_ASID |
14 | #define ASID(mm) ((mm)->context.id & 255) | 14 | #define ASID(mm) ((mm)->context.id & 255) |
15 | #else | 15 | #else |
16 | #define ASID(mm) (0) | 16 | #define ASID(mm) (0) |