2585c67983
The allwinner code is only needed for the allwinner board (for which we also have a separate CONFIG_ALLWINNER_A10 config switch), so it does not make sense that we compile this for all the other boards that need AHCI, too. Let's move it to a separate file that is only compiled when CONFIG_ALLWINNER_A10 is set. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 1508784509-29377-1-git-send-email-thuth@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
14 lines
542 B
Makefile
14 lines
542 B
Makefile
common-obj-$(CONFIG_IDE_CORE) += core.o atapi.o
|
|
common-obj-$(CONFIG_IDE_QDEV) += qdev.o
|
|
common-obj-$(CONFIG_IDE_PCI) += pci.o
|
|
common-obj-$(CONFIG_IDE_ISA) += isa.o
|
|
common-obj-$(CONFIG_IDE_PIIX) += piix.o
|
|
common-obj-$(CONFIG_IDE_CMD646) += cmd646.o
|
|
common-obj-$(CONFIG_IDE_MACIO) += macio.o
|
|
common-obj-$(CONFIG_IDE_MMIO) += mmio.o
|
|
common-obj-$(CONFIG_IDE_VIA) += via.o
|
|
common-obj-$(CONFIG_MICRODRIVE) += microdrive.o
|
|
common-obj-$(CONFIG_AHCI) += ahci.o
|
|
common-obj-$(CONFIG_AHCI) += ich.o
|
|
common-obj-$(CONFIG_ALLWINNER_A10) += ahci-allwinner.o
|