@samitouri / QOSamiQemu / commits / a5223ea536

include/hw/arm/omap_dma.h: Move to include/hw/dma

omap_dma.h is the header file for hw/dma/omap_dma.c; it fits better to put it in include/hw/dma/ to match where we have the .c file. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@oss.qualcomm.com> Message-id: 20260710105907.2570621-9-peter.maydell@linaro.org

Peter Maydell committed Jul 20, 2026 at 19:05 UTC a5223ea5364b6e24dd2e85a98db55ff6f2c34dc5
4 files changed +3 -3
hw/arm/omap1.c
+1 -1
@@ -32,7 +32,7 @@
32 #include "hw/sd/sd.h"
33 #include "system/blockdev.h"
34 #include "system/system.h"
35 -#include "hw/arm/soc_dma.h"
35 +#include "hw/dma/soc_dma.h"
36 #include "system/qtest.h"
37 #include "system/reset.h"
38 #include "system/runstate.h"
hw/dma/omap_dma.c
+1 -1
@@ -22,7 +22,7 @@
22 #include "qemu/timer.h"
23 #include "hw/arm/omap.h"
24 #include "hw/core/irq.h"
25 -#include "hw/arm/soc_dma.h"
25 +#include "hw/dma/soc_dma.h"
26 #include "system/physmem.h"
27
28 struct omap_dma_channel_s {
hw/dma/soc_dma.c
+1 -1
@@ -22,7 +22,7 @@
22 #include "qemu/timer.h"
23 #include "qemu/log.h"
24 #include "system/physmem.h"
25 -#include "hw/arm/soc_dma.h"
25 +#include "hw/dma/soc_dma.h"
26
27 static void transfer_mem2mem(struct soc_dma_ch_s *ch)
28 {
include/hw/dma/soc_dma.h renamed