aboutsummaryrefslogtreecommitdiff
path: root/hw/dma
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2019-04-29 17:36:03 +0100
committerPeter Maydell <peter.maydell@linaro.org>2019-04-29 17:36:03 +0100
commit597e76f2fa526c65eb761d2cca4debdc21513305 (patch)
tree8ca9f97cfeb99e325f14f25eb7589f6ca6a2e776 /hw/dma
parent14fd0c31e26b88a2189b3f459b864d5e1faf302a (diff)
downloadqemu-597e76f2fa526c65eb761d2cca4debdc21513305.zip
qemu-597e76f2fa526c65eb761d2cca4debdc21513305.tar.gz
qemu-597e76f2fa526c65eb761d2cca4debdc21513305.tar.bz2
hw/dma: Compile the bcm2835_dma device as common object
This device is used by both ARM (BCM2836, for raspi2) and AArch64 (BCM2837, for raspi3) targets, and is not CPU-specific. Move it to common object, so we build it once for all targets. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-id: 20190427133028.12874-1-philmd@redhat.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/dma')
-rw-r--r--hw/dma/Makefile.objs2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/dma/Makefile.objs b/hw/dma/Makefile.objs
index 79affec..8b39f9c 100644
--- a/hw/dma/Makefile.objs
+++ b/hw/dma/Makefile.objs
@@ -14,4 +14,4 @@ common-obj-$(CONFIG_XLNX_ZYNQMP_ARM) += xlnx-zdma.o
obj-$(CONFIG_OMAP) += omap_dma.o soc_dma.o
obj-$(CONFIG_PXA2XX) += pxa2xx_dma.o
-obj-$(CONFIG_RASPI) += bcm2835_dma.o
+common-obj-$(CONFIG_RASPI) += bcm2835_dma.o