summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2012-05-29 13:46:34 +0300
committerAlon Levy <alevy@redhat.com>2012-06-15 10:34:56 +0300
commit5e505dc6572ee29d0ebe912a8160a8e09bfb5d3e (patch)
tree42c0c4161aa5dd0922f30ccb3e4e6a70eb0088cf
parent67f86dc1e824d00a06bdc51ba4c3e88cfbd82292 (diff)
qxl_leave_vt: change outb to ioport_write (easier to grep / breakpoint on a single point)
-rw-r--r--src/qxl_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qxl_driver.c b/src/qxl_driver.c
index 966e641..2e24746 100644
--- a/src/qxl_driver.c
+++ b/src/qxl_driver.c
@@ -1215,7 +1215,7 @@ qxl_leave_vt(VT_FUNC_ARGS_DECL)
qxl->vt_surfaces = qxl_surface_cache_evacuate_all (qxl->surface_cache);
- outb(qxl->io_base + QXL_IO_RESET, 0);
+ ioport_write(qxl, QXL_IO_RESET, 0);
qxl_restore_state(pScrn);
}