diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-11-15 19:22:09 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-11-26 15:45:47 -0500 |
commit | f6e3354d02aa1f30672e3671098c12cb49c7da25 (patch) | |
tree | 63e5731ea85afae946d8d393b7faeb7f84b02ee3 /arch/arm/mm/mmu.c | |
parent | 97092e0c56830457af0639f6bd904537a150ea4a (diff) |
ARM: pgtable: introduce pteval_t to represent a pte value
This makes everywhere dealing with pte values use the same type.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mm/mmu.c')
-rw-r--r-- | arch/arm/mm/mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c index 9568f8632ae3..94ee0930d690 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/mmu.c | |||
@@ -62,7 +62,7 @@ struct cachepolicy { | |||
62 | const char policy[16]; | 62 | const char policy[16]; |
63 | unsigned int cr_mask; | 63 | unsigned int cr_mask; |
64 | unsigned int pmd; | 64 | unsigned int pmd; |
65 | unsigned int pte; | 65 | pteval_t pte; |
66 | }; | 66 | }; |
67 | 67 | ||
68 | static struct cachepolicy cache_policies[] __initdata = { | 68 | static struct cachepolicy cache_policies[] __initdata = { |