diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2017-01-18 03:32:54 -0800 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2017-02-07 13:23:39 +0800 |
commit | d8f25c2a5aa6dc5d20ee82d2079ef785554a4218 (patch) | |
tree | d34e09789c8c731de191a3650617eb7296ed334d /arch | |
parent | 8f60ea00394ba88b575fdfa660e99521e1ad68dd (diff) | |
download | u-boot-imx-d8f25c2a5aa6dc5d20ee82d2079ef785554a4218.zip u-boot-imx-d8f25c2a5aa6dc5d20ee82d2079ef785554a4218.tar.gz u-boot-imx-d8f25c2a5aa6dc5d20ee82d2079ef785554a4218.tar.bz2 |
x86: Compile irq.c for 64-bit
There is no reason not to compile irq.c for 64-bit.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/cpu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/cpu/Makefile b/arch/x86/cpu/Makefile index 45f95ab..92a9023 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 |