summaryrefslogtreecommitdiffstats
path: root/hw/qxl.c
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2012-10-02 11:39:14 +0200
committerGerd Hoffmann <kraxel@redhat.com>2012-10-08 12:15:17 +0200
commitd96aafca057845a4d58cd7b36771f2c97c78cd56 (patch)
tree0857a47e8a7b0261880c63d5c9898529adbf4cb1 /hw/qxl.c
parente25a0651f4be22099122b5e14c77c354be0aa88b (diff)
downloadhqemu-d96aafca057845a4d58cd7b36771f2c97c78cd56.zip
hqemu-d96aafca057845a4d58cd7b36771f2c97c78cd56.tar.gz
hw/qxl: fix condition for exiting guest_bug
Reported and suggested by Paolo Bonzini, thanks. Signed-off-by: Alon Levy <alevy@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/qxl.c')
-rw-r--r--hw/qxl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/qxl.c b/hw/qxl.c
index e99ed55..772b6c0 100644
--- a/hw/qxl.c
+++ b/hw/qxl.c
@@ -1461,7 +1461,7 @@ static void ioport_write(void *opaque, target_phys_addr_t addr,
qxl_async_io async = QXL_SYNC;
uint32_t orig_io_port = io_port;
- if (d->guest_bug && !io_port == QXL_IO_RESET) {
+ if (d->guest_bug && io_port != QXL_IO_RESET) {
return;
}
OpenPOWER on IntegriCloud