diff options
author | Jean-Jacques Hiblot | 2017-04-07 13:42:01 +0200 |
---|---|---|
committer | Simon Glass | 2017-04-14 19:38:57 -0600 |
commit | fd138ca1bddc803ff1ec0da63e2c215668fecaeb (patch) | |
tree | 6c501b0059cc71e726d31f3941f892ad49f92137 | |
parent | 01a072c6cf0539e7b8e78cce7f1f53884121646a (diff) |
arm: omap: sata: compile out board-level sata code when CONFIG_DM_SCSI is defined
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>
-rw-r--r-- | arch/arm/mach-omap2/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index e814eb008e4..aa3986dddb1 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 |