x86: prepare consolidation of cpu/ related code usage

Move mce.c to mce_32.c to allow the later move of the x86_64 mce.c
from arch/x86/kernel/ to ...kernel/cpu/mcheck

No code change.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by Thomas Gleixner and committed by Thomas Gleixner 3bc258ad 34d19e29

+2 -4
+2 -4
arch/x86/kernel/cpu/mcheck/Makefile
··· 1 - obj-$(CONFIG_X86_32) = mce.o k7.o p4.o p5.o p6.o winchip.o 2 obj-$(CONFIG_X86_MCE_NONFATAL) += non-fatal.o 3 - 4 - # shared between i386 and x86_64 5 - obj-y += therm_throt.o
··· 1 + obj-y = mce_$(BITS).o therm_throt.o 2 + obj-$(CONFIG_X86_32) += k7.o p4.o p5.o p6.o winchip.o 3 obj-$(CONFIG_X86_MCE_NONFATAL) += non-fatal.o
arch/x86/kernel/cpu/mcheck/mce.c arch/x86/kernel/cpu/mcheck/mce_32.c