Signed-off-by: Michael Roth <mdr...@linux.vnet.ibm.com> --- hw/cirrus_vga.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/hw/cirrus_vga.c b/hw/cirrus_vga.c index 9b27317..220525a 100644 --- a/hw/cirrus_vga.c +++ b/hw/cirrus_vga.c @@ -258,10 +258,12 @@ QIDL_DECLARE(PCICirrusVGAState) { CirrusVGAState cirrus_vga; }; -typedef struct ISACirrusVGAState { - ISADevice dev; +typedef struct ISACirrusVGAState ISACirrusVGAState; + +QIDL_DECLARE(ISACirrusVGAState) { + ISADevice dev q_immutable; CirrusVGAState cirrus_vga; -} ISACirrusVGAState; +}; static uint8_t rop_to_index[256]; -- 1.7.9.5