mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
96a388de5d
Move the headers to include/asm-x86 and fixup the header install make rules Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
14 lines
192 B
C
14 lines
192 B
C
#ifdef __KERNEL__
|
|
# ifdef CONFIG_X86_32
|
|
# include "page_32.h"
|
|
# else
|
|
# include "page_64.h"
|
|
# endif
|
|
#else
|
|
# ifdef __i386__
|
|
# include "page_32.h"
|
|
# else
|
|
# include "page_64.h"
|
|
# endif
|
|
#endif
|