From: Simon Glass Date: Tue, 4 Jul 2017 19:31:30 +0000 (-0600) Subject: dm: sunxi: sata: Don't build sata support into SPL X-Git-Tag: v2017.09-rc2~136^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=74daf94a2305a7b70fc24511d2ca7dc3358e746d;p=platform%2Fkernel%2Fu-boot.git dm: sunxi: sata: Don't build sata support into SPL This is not used in SPL so we do not need to compile it. Make this change before adding driver-model support to the driver, to avoid build errors. With driver model we define a U_BOOT_DRIVER() which would otherwise be present in SPL and not be garbage-collected when building. Signed-off-by: Simon Glass Acked-by: Maxime Ripard --- diff --git a/board/sunxi/Makefile b/board/sunxi/Makefile index 43766e0..f4411f0 100644 --- a/board/sunxi/Makefile +++ b/board/sunxi/Makefile @@ -10,7 +10,9 @@ # obj-y += board.o obj-$(CONFIG_SUNXI_GMAC) += gmac.o +ifndef CONFIG_SPL_BUILD obj-$(CONFIG_SUNXI_AHCI) += ahci.o +endif obj-$(CONFIG_MACH_SUN4I) += dram_sun4i_auto.o obj-$(CONFIG_MACH_SUN5I) += dram_sun5i_auto.o obj-$(CONFIG_MACH_SUN7I) += dram_sun5i_auto.o