diff options
author | Pekka Enberg <penberg@cs.helsinki.fi> | 2009-03-05 13:55:07 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-05 14:17:18 +0100 |
commit | e53fb04fce6d246ebed755b904ed1b0b814a754c (patch) | |
tree | cdb45ab5d2bd8c076868038e76c9622f229e97cb /arch/x86/mm/init_64.c | |
parent | x86: fix up some bad global variable names in mm/init.c (diff) | |
download | linux-e53fb04fce6d246ebed755b904ed1b0b814a754c.tar.xz linux-e53fb04fce6d246ebed755b904ed1b0b814a754c.zip |
x86: unify kernel_physical_mapping_init() function signatures
Impact: cleanup
In preparation for moving the function declaration to a header file,
unify 32-bit and 64-bit signatures.
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Yinghai Lu <yinghai@kernel.org>
LKML-Reference: <1236257708-27269-16-git-send-email-penberg@cs.helsinki.fi>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm/init_64.c')
-rw-r--r-- | arch/x86/mm/init_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c index a1d33c58b497..f441ae316312 100644 --- a/arch/x86/mm/init_64.c +++ b/arch/x86/mm/init_64.c @@ -539,7 +539,7 @@ phys_pud_update(pgd_t *pgd, unsigned long addr, unsigned long end, return phys_pud_init(pud, addr, end, page_size_mask); } -unsigned long __meminit +unsigned long __init kernel_physical_mapping_init(unsigned long start, unsigned long end, unsigned long page_size_mask) |