diff options
| author | Thomas Huth <thuth@redhat.com> | 2025-05-08 16:41:16 +0200 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2025-05-14 11:50:42 +0200 |
| commit | 6ea7a5762aa1aacb7a5410e4b805bb8c99c6f133 (patch) | |
| tree | 20d54b0b8863a5820bc1f1c0b7af02d9c74bbc62 | |
| parent | bdf12f2a56bf3f13c52eb51f0a994bbfe40706b2 (diff) | |
| download | focaccia-qemu-6ea7a5762aa1aacb7a5410e4b805bb8c99c6f133.tar.gz focaccia-qemu-6ea7a5762aa1aacb7a5410e4b805bb8c99c6f133.zip | |
include/hw/dma/xlnx_dpdma: Remove dependency on console.h
console.h brings a dependency on the <epoxy/opengl.h> and the pixman header file (if available), so we should avoid to include this file if it is not really necessary. console.h does not seem to be necessary for the xlnx_dpdma code, so drop the include here. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com> Message-ID: <20250508144120.163009-2-thuth@redhat.com>
| -rw-r--r-- | include/hw/dma/xlnx_dpdma.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/hw/dma/xlnx_dpdma.h b/include/hw/dma/xlnx_dpdma.h index 1ec0d265be..484b2e377f 100644 --- a/include/hw/dma/xlnx_dpdma.h +++ b/include/hw/dma/xlnx_dpdma.h @@ -26,7 +26,6 @@ #define XLNX_DPDMA_H #include "hw/sysbus.h" -#include "ui/console.h" #include "system/dma.h" #include "qom/object.h" |