diff options
author | Michael S. Tsirkin | 2022-11-09 23:21:23 +0100 |
---|---|---|
committer | Michael S. Tsirkin | 2022-11-10 16:17:18 +0100 |
commit | 28cf39609603e4b5b2de8b74d4caa4d840425eff (patch) | |
tree | 4b9f111ba88389705275f87d1000bc9888ba20fa /include | |
parent | checkpatch: typo fix (diff) | |
download | qemu-28cf39609603e4b5b2de8b74d4caa4d840425eff.tar.gz qemu-28cf39609603e4b5b2de8b74d4caa4d840425eff.tar.xz qemu-28cf39609603e4b5b2de8b74d4caa4d840425eff.zip |
display: include dependencies explicitly
acpi-vga-stub.c pulls in vga_int.h
However that currently pulls in ui/console.h which
breaks e.g. on systems without pixman.
It's better to remove ui/console.h from vga_int.h
and directly include it where it's used.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20221109222112.74519-1-mst@redhat.com>
Tested-by: Laurent Vivier <lvivier@redhat.com>
Reported-by: Miroslav Rezanina <mrezanin@redhat.com>
Reported-by: Frederic Bezies <fredbezies@gmail.com>
Reported-by: Laurent Vivier <lvivier@redhat.com>
Fixes: cfead31326 ("AcpiDevAmlIf interface to build VGA device descs")
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/typedefs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/qemu/typedefs.h b/include/qemu/typedefs.h index 6d4e6d9708..688408e048 100644 --- a/include/qemu/typedefs.h +++ b/include/qemu/typedefs.h @@ -132,6 +132,8 @@ typedef struct Visitor Visitor; typedef struct VMChangeStateEntry VMChangeStateEntry; typedef struct VMStateDescription VMStateDescription; typedef struct DumpState DumpState; +typedef struct GraphicHwOps GraphicHwOps; +typedef struct QEMUCursor QEMUCursor; /* * Pointer types |