diff options
author | Joerg Roedel <joerg.roedel@amd.com> | 2008-07-25 10:48:56 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-26 09:39:20 -0400 |
commit | 15ae2d76ceb037a1e3fcd8fc9b4fe3177f9f3831 (patch) | |
tree | b1d87a2f0b0516eef46c8198d5aed1d985054973 /arch/x86/mm/pageattr.c | |
parent | 1ddb5518052e4e28ab489237443f7443b3fd69ca (diff) |
x86: convert pageattr.c from round_up to roundup
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm/pageattr.c')
-rw-r--r-- | arch/x86/mm/pageattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c index 65c6e46bf059..0d254adcc82d 100644 --- a/arch/x86/mm/pageattr.c +++ b/arch/x86/mm/pageattr.c | |||
@@ -78,7 +78,7 @@ static inline unsigned long highmap_start_pfn(void) | |||
78 | 78 | ||
79 | static inline unsigned long highmap_end_pfn(void) | 79 | static inline unsigned long highmap_end_pfn(void) |
80 | { | 80 | { |
81 | return __pa(round_up((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT; | 81 | return __pa(roundup((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT; |
82 | } | 82 | } |
83 | 83 | ||
84 | #endif | 84 | #endif |