diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-08-21 12:06:38 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-09-20 09:58:35 -0400 |
commit | 1b2e2b73b4c84c918686c04a00724197036c0847 (patch) | |
tree | d0b2d703573dbe5a7f3d6d647b51a3137e039007 /arch/arm/mm/mm.h | |
parent | e478bec0ba0a83a48a0f6982934b6de079e7e6b3 (diff) |
[ARM] Cleanup arch/arm/mm a little
Move top_pmd into arch/arm/mm/mm.h - nothing outside arch/arm/mm
references it.
Move the repeated definition of TOP_PTE into mm/mm.h, as well as
a few function prototypes.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mm/mm.h')
-rw-r--r-- | arch/arm/mm/mm.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/arm/mm/mm.h b/arch/arm/mm/mm.h new file mode 100644 index 000000000000..8d73ffbce8df --- /dev/null +++ b/arch/arm/mm/mm.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* the upper-most page table pointer */ | ||
2 | extern pmd_t *top_pmd; | ||
3 | |||
4 | #define TOP_PTE(x) pte_offset_kernel(top_pmd, x) | ||
5 | |||
6 | static inline pmd_t *pmd_off(pgd_t *pgd, unsigned long virt) | ||
7 | { | ||
8 | return pmd_offset(pgd, virt); | ||
9 | } | ||
10 | |||
11 | static inline pmd_t *pmd_off_k(unsigned long virt) | ||
12 | { | ||
13 | return pmd_off(pgd_offset_k(virt), virt); | ||
14 | } | ||
15 | |||
16 | struct map_desc; | ||
17 | |||
18 | void __init build_mem_type_table(void); | ||
19 | void __init create_mapping(struct map_desc *md); | ||