diff options
author | Alon Levy <alevy@redhat.com> | 2011-07-20 12:20:57 +0300 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2011-08-01 12:43:49 +0200 |
commit | e21a298a7b7a5c5e8edc4912dec3b497497c347d (patch) | |
tree | b1bcd8be93611ebd5eb7a5e9982458d3ef1ab929 /hw/qxl.c | |
parent | 7635392ce6844702b4e0faadfa558a6972e16098 (diff) |
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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |