aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/cpu/Makefile
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-12-06 21:42:55 -0700
committerBin Meng <bmeng.cn@gmail.com>2019-12-15 11:44:25 +0800
commitbaaeb92c21370cc4717d4841906677f95ece55a3 (patch)
treeb36dc803e3ef9dc13510d362bcd54548d645098f /arch/x86/cpu/Makefile
parent7e589bc19b4e9becd5bf825cd072abf1980fff91 (diff)
downloadu-boot-baaeb92c21370cc4717d4841906677f95ece55a3.zip
u-boot-baaeb92c21370cc4717d4841906677f95ece55a3.tar.gz
u-boot-baaeb92c21370cc4717d4841906677f95ece55a3.tar.bz2
x86: Move qemu CPU fixup function into its own file
This function is specific to qemu so it seems best to keep it separate from the generic code. Move it out to a new file and update the condition to use if() instead of #ifdef Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/cpu/Makefile')
-rw-r--r--arch/x86/cpu/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/cpu/Makefile b/arch/x86/cpu/Makefile
index b6a010e..0e90a38 100644
--- a/arch/x86/cpu/Makefile
+++ b/arch/x86/cpu/Makefile
@@ -54,6 +54,7 @@ obj-$(CONFIG_INTEL_QUEENSBAY) += queensbay/
obj-$(CONFIG_INTEL_TANGIER) += tangier/
obj-$(CONFIG_APIC) += lapic.o ioapic.o
obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += irq.o
+obj-$(CONFIG_QFW) += qfw_cpu.o
ifndef CONFIG_$(SPL_)X86_64
obj-$(CONFIG_SMP) += mp_init.o
endif