diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-11-21 06:00:56 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-11-26 15:45:45 -0500 |
commit | b0d03745b18c39b8e86e70f7778f2093d2cd4ed7 (patch) | |
tree | 902fb790003a56eb2361d233913f7f4876851f1d /arch/arm/mm | |
parent | 69529c0eb76469168f1dd5851f363dbab17ce8fd (diff) |
ARM: pgtable: get rid of get_pgd_slow()/free_pgd_slow()
These old names are just aliases for pgd_alloc/pgd_free. Just use the
new names.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mm')
-rw-r--r-- | arch/arm/mm/pgd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mm/pgd.c b/arch/arm/mm/pgd.c index 69bbfc6645a6..e3eda56f4788 100644 --- a/arch/arm/mm/pgd.c +++ b/arch/arm/mm/pgd.c | |||
@@ -22,7 +22,7 @@ | |||
22 | /* | 22 | /* |
23 | * need to get a 16k page for level 1 | 23 | * need to get a 16k page for level 1 |
24 | */ | 24 | */ |
25 | pgd_t *get_pgd_slow(struct mm_struct *mm) | 25 | pgd_t *pgd_alloc(struct mm_struct *mm) |
26 | { | 26 | { |
27 | pgd_t *new_pgd, *init_pgd; | 27 | pgd_t *new_pgd, *init_pgd; |
28 | pmd_t *new_pmd, *init_pmd; | 28 | pmd_t *new_pmd, *init_pmd; |
@@ -73,7 +73,7 @@ no_pgd: | |||
73 | return NULL; | 73 | return NULL; |
74 | } | 74 | } |
75 | 75 | ||
76 | void free_pgd_slow(struct mm_struct *mm, pgd_t *pgd) | 76 | void pgd_free(struct mm_struct *mm, pgd_t *pgd) |
77 | { | 77 | { |
78 | pmd_t *pmd; | 78 | pmd_t *pmd; |
79 | pgtable_t pte; | 79 | pgtable_t pte; |