mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
f8c8669760
It seems like the Allwinner SATA driver is already quite capable of using the driver model, so we can force this on all boards and can remove support for a non-DM_SCSI build. This removes the warning about boards with SATA ports not being DM_SCSI compliant. It also takes the opportunity to move the driver out of the board/sunxi directory to join its siblings in drivers/ata, and to make it a proper Kconfig citizen. The board defconfigs stay untouched. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Jagan Teki <jagan@openedev.com> [jagan: select DM_SCSI separately] Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
21 lines
724 B
Makefile
21 lines
724 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2007
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
obj-$(CONFIG_DWC_AHCI) += dwc_ahci.o
|
|
obj-$(CONFIG_AHCI) += ahci-uclass.o
|
|
obj-$(CONFIG_AHCI_PCI) += ahci-pci.o
|
|
obj-$(CONFIG_SCSI_AHCI) += ahci.o
|
|
obj-$(CONFIG_DWC_AHSATA) += dwc_ahsata.o
|
|
obj-$(CONFIG_FSL_SATA) += fsl_sata.o
|
|
obj-$(CONFIG_LIBATA) += libata.o
|
|
obj-$(CONFIG_MVSATA_IDE) += mvsata_ide.o
|
|
obj-$(CONFIG_SATA) += sata.o
|
|
obj-$(CONFIG_SATA_CEVA) += sata_ceva.o
|
|
obj-$(CONFIG_SATA_MV) += sata_mv.o
|
|
obj-$(CONFIG_SATA_SIL3114) += sata_sil3114.o
|
|
obj-$(CONFIG_SATA_SIL) += sata_sil.o
|
|
obj-$(CONFIG_SANDBOX) += sata_sandbox.o
|
|
obj-$(CONFIG_AHCI_MVEBU) += ahci_mvebu.o
|
|
obj-$(CONFIG_SUNXI_AHCI) += ahci_sunxi.o
|