From: Bin Meng Date: Mon, 4 Jun 2018 02:04:18 +0000 (-0700) Subject: x86: ivybridge: Enable 206ax cpu driver for FSP build X-Git-Tag: v2018.07-rc2~52^2~14 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7d0bc172e5a5621113710d5e6e1a5413845c0863;p=u-boot x86: ivybridge: Enable 206ax cpu driver for FSP build At present this 206ax cpu driver is only built when FSP is not used. This updates the Makefile to enable the build for both cases. Signed-off-by: Bin Meng Reviewed-by: Simon Glass --- diff --git a/arch/x86/cpu/ivybridge/Makefile b/arch/x86/cpu/ivybridge/Makefile index 27cfb26317..716134e9ff 100644 --- a/arch/x86/cpu/ivybridge/Makefile +++ b/arch/x86/cpu/ivybridge/Makefile @@ -8,7 +8,6 @@ else obj-$(CONFIG_$(SPL_)X86_32BIT_INIT) += cpu.o obj-y += early_me.o obj-y += lpc.o -obj-y += model_206ax.o obj-y += northbridge.o ifndef CONFIG_SPL_BUILD obj-y += sata.o @@ -18,4 +17,5 @@ ifndef CONFIG_$(SPL_)X86_32BIT_INIT obj-y += sdram_nop.o endif endif +obj-y += model_206ax.o obj-y += bd82x6x.o