From: Philippe Mathieu-Daudé Date: Mon, 28 May 2018 23:27:15 +0000 (-0300) Subject: hw/misc/sga: Use the correct ISA include X-Git-Tag: v3.0.0-rc0~117^2~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b18aad5c99f63a00105d0b94aa5ca408ac3ce89d;p=thirdparty%2Fqemu.git hw/misc/sga: Use the correct ISA include The SGA BIOS loader is an ISA device, it does not require the PCI header. Signed-off-by: Philippe Mathieu-Daudé Message-Id: <20180528232719.4721-18-f4bug@amsat.org> Acked-by: Michael S. Tsirkin Reviewed-by: Marcel Apfelbaum Signed-off-by: Paolo Bonzini --- diff --git a/hw/misc/sga.c b/hw/misc/sga.c index 97fd63f1764..4a22a52a605 100644 --- a/hw/misc/sga.c +++ b/hw/misc/sga.c @@ -25,7 +25,7 @@ * */ #include "qemu/osdep.h" -#include "hw/pci/pci.h" +#include "hw/isa/isa.h" #include "hw/loader.h" #include "sysemu/sysemu.h"