aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2024-02-13 13:01:50 +0100
committerMichael Tokarev <mjt@tls.msk.ru>2024-02-20 20:34:21 +0300
commit0a1e084949dcc2282cbbed33f10ca56d478023bd (patch)
tree2abcf60059fd89fb2f0ca955036981cefaf355e3
parenta4ed7a7b763bd9d82b1e9c5e8c24938a69284504 (diff)
downloadqemu-0a1e084949dcc2282cbbed33f10ca56d478023bd.zip
qemu-0a1e084949dcc2282cbbed33f10ca56d478023bd.tar.gz
qemu-0a1e084949dcc2282cbbed33f10ca56d478023bd.tar.bz2
hw/i386/port92: Add missing 'hw/isa/isa.h' header
TYPE_PORT92 inherits TYPE_ISA_DEVICE, so need to include "hw/isa/isa.h" to get its declarations (currently we indirectly include this header via "hw/i386/pc.h"). Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Michael Tokarev <mjt@tls.msk.ru> Reviewed-by: Luc Michel <luc.michel@amd.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r--hw/i386/port92.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/i386/port92.c b/hw/i386/port92.c
index 1070bfb..b25157f 100644
--- a/hw/i386/port92.c
+++ b/hw/i386/port92.c
@@ -10,6 +10,7 @@
#include "sysemu/runstate.h"
#include "migration/vmstate.h"
#include "hw/irq.h"
+#include "hw/isa/isa.h"
#include "hw/i386/pc.h"
#include "trace.h"
#include "qom/object.h"