-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x86: move function and variable declarations to asm/init.h
Impact: cleanup Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi> Cc: Yinghai Lu <yinghai@kernel.org> LKML-Reference: <1236257708-27269-17-git-send-email-penberg@cs.helsinki.fi> Signed-off-by: Ingo Molnar <mingo@elte.hu>
- Loading branch information
Pekka Enberg
authored and
Ingo Molnar
committed
Mar 5, 2009
1 parent
e53fb04
commit 4fcb208
Showing
4 changed files
with
21 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#ifndef _ASM_X86_INIT_32_H | ||
#define _ASM_X86_INIT_32_H | ||
|
||
#ifdef CONFIG_X86_32 | ||
extern void __init early_ioremap_page_table_range_init(void); | ||
#endif | ||
|
||
extern unsigned long __init | ||
kernel_physical_mapping_init(unsigned long start, | ||
unsigned long end, | ||
unsigned long page_size_mask); | ||
|
||
|
||
extern unsigned long __initdata e820_table_start; | ||
extern unsigned long __meminitdata e820_table_end; | ||
extern unsigned long __meminitdata e820_table_top; | ||
|
||
#endif /* _ASM_X86_INIT_32_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters