mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-24 13:13:57 +08:00
14 lines
192 B
C
14 lines
192 B
C
|
#ifdef __KERNEL__
|
||
|
# ifdef CONFIG_X86_32
|
||
|
# include "mtrr_32.h"
|
||
|
# else
|
||
|
# include "mtrr_64.h"
|
||
|
# endif
|
||
|
#else
|
||
|
# ifdef __i386__
|
||
|
# include "mtrr_32.h"
|
||
|
# else
|
||
|
# include "mtrr_64.h"
|
||
|
# endif
|
||
|
#endif
|