mirror of https://gitee.com/openkylin/linux.git
[PATCH] x86-64: Move mtrr prototypes from proto.h to mtrr.h
Signed-off-by: Andi Kleen <ak@suse.de>
This commit is contained in:
parent
03df4f6ee9
commit
856f44ff4a
|
@ -135,6 +135,14 @@ struct mtrr_gentry32
|
||||||
|
|
||||||
#endif /* CONFIG_COMPAT */
|
#endif /* CONFIG_COMPAT */
|
||||||
|
|
||||||
|
#ifdef CONFIG_MTRR
|
||||||
|
extern void mtrr_ap_init(void);
|
||||||
|
extern void mtrr_bp_init(void);
|
||||||
|
#else
|
||||||
|
#define mtrr_ap_init() do {} while (0)
|
||||||
|
#define mtrr_bp_init() do {} while (0)
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* __KERNEL__ */
|
#endif /* __KERNEL__ */
|
||||||
|
|
||||||
#endif /* _LINUX_MTRR_H */
|
#endif /* _LINUX_MTRR_H */
|
||||||
|
|
|
@ -14,13 +14,6 @@ extern void pda_init(int);
|
||||||
extern void early_idt_handler(void);
|
extern void early_idt_handler(void);
|
||||||
|
|
||||||
extern void mcheck_init(struct cpuinfo_x86 *c);
|
extern void mcheck_init(struct cpuinfo_x86 *c);
|
||||||
#ifdef CONFIG_MTRR
|
|
||||||
extern void mtrr_ap_init(void);
|
|
||||||
extern void mtrr_bp_init(void);
|
|
||||||
#else
|
|
||||||
#define mtrr_ap_init() do {} while (0)
|
|
||||||
#define mtrr_bp_init() do {} while (0)
|
|
||||||
#endif
|
|
||||||
extern void init_memory_mapping(unsigned long start, unsigned long end);
|
extern void init_memory_mapping(unsigned long start, unsigned long end);
|
||||||
|
|
||||||
extern void system_call(void);
|
extern void system_call(void);
|
||||||
|
|
Loading…
Reference in New Issue