mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 18:06:49 +07:00
01e11182e7
The x86_64 arch/x86/kernel/Makefile uses references into arch/x86/kernel/cpu/... to use code from there. Unifiy it with the nicely structured i386 way and reuse the existing subdirectory make rules. Also move the machine check related source into ...kernel/cpu/mcheck, where the other machine check related code is. No code change. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
7 lines
230 B
Makefile
7 lines
230 B
Makefile
obj-y = mce_$(BITS).o therm_throt.o
|
|
|
|
obj-$(CONFIG_X86_32) += k7.o p4.o p5.o p6.o winchip.o
|
|
obj-$(CONFIG_X86_MCE_INTEL) += mce_intel_64.o
|
|
obj-$(CONFIG_X86_MCE_AMD) += mce_amd_64.o
|
|
obj-$(CONFIG_X86_MCE_NONFATAL) += non-fatal.o
|