
14 Apr
2017
14 Apr
'17
1:08 p.m.
When CONFIG_DM_SCSI is defined, the SATA initialization will be implemented in the scsi-uclass driver.
Signed-off-by: Jean-Jacques Hiblot jjhiblot@ti.com Reviewed-by: Tom Rini trini@konsulko.com --- arch/arm/mach-omap2/Makefile | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index e814eb0..aa3986d 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile @@ -29,9 +29,11 @@ obj-y += abb.o endif
ifneq ($(CONFIG_OMAP54XX),) +ifeq ($(CONFIG_DM_SCSI),) obj-y += pipe3-phy.o obj-$(CONFIG_SCSI_AHCI_PLAT) += sata.o endif +endif
ifeq ($(CONFIG_SYS_DCACHE_OFF),) obj-y += omap-cache.o
--
1.9.1