diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2006-12-01 23:03:47 (GMT) |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-12-01 23:40:23 (GMT) |
commit | 0e5fdca7622eb950f42f97a1970670e00a739175 (patch) | |
tree | 79d224ff6d6a989427875f3c6cebf001634f75a1 /include/asm-arm | |
parent | e520a36de2f7985df5ef2e84a9f6d2608ecc6f25 (diff) | |
download | linux-fsl-qoriq-0e5fdca7622eb950f42f97a1970670e00a739175.tar.xz |
[ARM] 3971/1: xsc3: get rid of L_PTE_COHERENT
Merge L_PTE_COHERENT with L_PTE_SHARED and free up a L_PTE_* bit.
Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm')
-rw-r--r-- | include/asm-arm/pgtable.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/asm-arm/pgtable.h b/include/asm-arm/pgtable.h index ed8cb59..88cd5c7 100644 --- a/include/asm-arm/pgtable.h +++ b/include/asm-arm/pgtable.h @@ -169,8 +169,7 @@ extern void __pgd_error(const char *file, int line, unsigned long val); #define L_PTE_WRITE (1 << 5) #define L_PTE_EXEC (1 << 6) #define L_PTE_DIRTY (1 << 7) -#define L_PTE_COHERENT (1 << 9) /* I/O coherent (xsc3) */ -#define L_PTE_SHARED (1 << 10) /* shared between CPUs (v6) */ +#define L_PTE_SHARED (1 << 10) /* shared(v6), coherent(xsc3) */ #define L_PTE_ASID (1 << 11) /* non-global (use ASID, v6) */ #ifndef __ASSEMBLY__ |