diff options
author | Caleb Connolly | 2024-06-17 10:03:47 +0200 |
---|---|---|
committer | Tom Rini | 2024-06-25 17:22:30 -0600 |
commit | 7cc93554142e001d1e3504afe840f4bdf3471736 (patch) | |
tree | 15d9eaf832ae29f446bab6f9b7bbd9750d66859f /arch | |
parent | f1de28e67aa9b66bfca0fad3dc18446a6ec0b504 (diff) |
arm64: mmu.h: fix PTE_TABLE_AP
The APTable attribute is two bits wide according to the ARMv8-A
architecture reference manual. Fix the macro accordingly.
Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/include/asm/armv8/mmu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/armv8/mmu.h b/arch/arm/include/asm/armv8/mmu.h index ce655ce7a95..52cb18b9ed5 100644 --- a/arch/arm/include/asm/armv8/mmu.h +++ b/arch/arm/include/asm/armv8/mmu.h @@ -51,7 +51,7 @@ #define PTE_TABLE_PXN (1UL << 59) #define PTE_TABLE_XN (1UL << 60) -#define PTE_TABLE_AP (1UL << 61) +#define PTE_TABLE_AP (3UL << 61) #define PTE_TABLE_NS (1UL << 63) /* |