aboutsummaryrefslogtreecommitdiff
path: root/hw/qxl.c
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2011-07-20 12:20:57 +0300
committerGerd Hoffmann <kraxel@redhat.com>2011-08-01 12:43:49 +0200
commite21a298a7b7a5c5e8edc4912dec3b497497c347d (patch)
treeb1bcd8be93611ebd5eb7a5e9982458d3ef1ab929 /hw/qxl.c
parent7635392ce6844702b4e0faadfa558a6972e16098 (diff)
downloadqemu-e21a298a7b7a5c5e8edc4912dec3b497497c347d.zip
qemu-e21a298a7b7a5c5e8edc4912dec3b497497c347d.tar.gz
qemu-e21a298a7b7a5c5e8edc4912dec3b497497c347d.tar.bz2
qxl: only disallow specific io's in vga mode
Since the driver is still in operation even after moving to UNDEFINED, i.e. by destroying primary in any way. 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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/qxl.c b/hw/qxl.c
index c50eaf9..23e3240 100644
--- a/hw/qxl.c
+++ b/hw/qxl.c
@@ -1055,8 +1055,9 @@ static void ioport_write(void *opaque, uint32_t addr, uint32_t val)
case QXL_IO_LOG:
break;
default:
- if (d->mode == QXL_MODE_NATIVE || d->mode == QXL_MODE_COMPAT)
+ if (d->mode != QXL_MODE_VGA) {
break;
+ }
dprint(d, 1, "%s: unexpected port 0x%x (%s) in vga mode\n",
__func__, io_port, io_port_to_string(io_port));
return;