mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 20:19:44 +00:00
ce86460344
Some machines have an SDHCI device, but no PCI. To be able to compile hw/sd/sdhci.c without CONFIG_PCI, we must not call functions like pci_get_address_space() and pci_allocate_irq() there. Thus move the PCI-related code into a separate file. This is required for the new Kconfig-like build system, e.g. it is needed if a user wants to compile a QEMU binary with just one machine that has SDHCI, but no PCI, like the ARM "raspi" machines for example. Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
11 lines
377 B
Makefile
11 lines
377 B
Makefile
common-obj-$(CONFIG_PL181) += pl181.o
|
|
common-obj-$(CONFIG_SSI_SD) += ssi-sd.o
|
|
common-obj-$(CONFIG_SD) += sd.o core.o sdmmc-internal.o
|
|
common-obj-$(CONFIG_SDHCI) += sdhci.o
|
|
common-obj-$(CONFIG_SDHCI_PCI) += sdhci-pci.o
|
|
|
|
obj-$(CONFIG_MILKYMIST) += milkymist-memcard.o
|
|
obj-$(CONFIG_OMAP) += omap_mmc.o
|
|
obj-$(CONFIG_PXA2XX) += pxa2xx_mmci.o
|
|
obj-$(CONFIG_RASPI) += bcm2835_sdhost.o
|