From d8f25c2a5aa6dc5d20ee82d2079ef785554a4218 Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Wed, 18 Jan 2017 03:32:54 -0800 Subject: [PATCH] x86: Compile irq.c for 64-bit There is no reason not to compile irq.c for 64-bit. Signed-off-by: Bin Meng Reviewed-by: Simon Glass --- arch/x86/cpu/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/cpu/Makefile b/arch/x86/cpu/Makefile index 45f95ab034..92a9023b0b 100644 --- a/arch/x86/cpu/Makefile +++ b/arch/x86/cpu/Makefile @@ -35,8 +35,8 @@ obj-$(CONFIG_NORTHBRIDGE_INTEL_IVYBRIDGE) += ivybridge/ obj-$(CONFIG_INTEL_QUARK) += quark/ obj-$(CONFIG_INTEL_QUEENSBAY) += queensbay/ obj-y += lapic.o ioapic.o -ifndef CONFIG_$(SPL_)X86_64 obj-y += irq.o +ifndef CONFIG_$(SPL_)X86_64 obj-$(CONFIG_SMP) += mp_init.o endif obj-y += mtrr.o