summaryrefslogtreecommitdiff
path: root/hw/kdrive/ati
diff options
context:
space:
mode:
authorEric Anholt <anholt@freebsd.org>2006-02-15 03:20:55 +0000
committerEric Anholt <anholt@freebsd.org>2006-02-15 03:20:55 +0000
commit50e2ff9a2500078ebbd833fddab0d93f3a50b6a6 (patch)
tree21769a302b94079d8033d18489e74470329c9292 /hw/kdrive/ati
parent0446aafa9467f43515fb578d50f45e2c3153c8cf (diff)
Remove the waitSync from KdDisableScreen and push it off to drivers'
disableAccel hook, which is more correct anyway. This makes kdrive.c not have any knowledge of kaa, opening the way for using exa from kdrive.
Diffstat (limited to 'hw/kdrive/ati')
-rw-r--r--hw/kdrive/ati/ChangeLog8
-rw-r--r--hw/kdrive/ati/ati_draw.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/hw/kdrive/ati/ChangeLog b/hw/kdrive/ati/ChangeLog
index dcffbde80..d842f19b2 100644
--- a/hw/kdrive/ati/ChangeLog
+++ b/hw/kdrive/ati/ChangeLog
@@ -1,3 +1,11 @@
+2006-02-14 Eric Anholt <anholt@FreeBSD.org>
+
+ * ati_draw.c: (ATIDrawDisable):
+ Remove the waitSync from KdDisableScreen and push it off to drivers'
+ disableAccel hook, which is more correct anyway. This makes kdrive.c
+ not have any knowledge of kaa, opening the way for using exa from
+ kdrive.
+
2006-02-09 Keith Packard <keithp@keithp.com>
reviewed by: Eric Anholt <anholt@FreeBSD.org>
diff --git a/hw/kdrive/ati/ati_draw.c b/hw/kdrive/ati/ati_draw.c
index 28cc7b047..f71dac5f7 100644
--- a/hw/kdrive/ati/ati_draw.c
+++ b/hw/kdrive/ati/ati_draw.c
@@ -897,7 +897,7 @@ ATIDrawEnable(ScreenPtr pScreen)
void
ATIDrawDisable(ScreenPtr pScreen)
{
-
+ kaaWaitSync(pScreen);
ATIDMATeardown(pScreen);
}