summaryrefslogtreecommitdiff
path: root/src/radeon_cursor.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@nx6125b.(none)>2007-05-30 17:49:01 +1000
committerDave Airlie <airlied@nx6125b.(none)>2007-05-30 17:49:01 +1000
commit31c1be420d5277dd15505bd73e6144827a0580cd (patch)
treefcbc1c1b3f1be89dccae99721a4d05d206581910 /src/radeon_cursor.c
parent7fc02657c4d740941fbda5a8823cf45de3eca3f8 (diff)
remove these syncs, at least on rs480 it doesn't break
probably requires testing on other r300 based cards, with the syncs in we hang when moving the cursor into the second CRTC.
Diffstat (limited to 'src/radeon_cursor.c')
-rw-r--r--src/radeon_cursor.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/radeon_cursor.c b/src/radeon_cursor.c
index 67466155..b3f7691c 100644
--- a/src/radeon_cursor.c
+++ b/src/radeon_cursor.c
@@ -106,8 +106,6 @@ radeon_crtc_show_cursor (xf86CrtcPtr crtc)
RADEONInfoPtr info = RADEONPTR(pScrn);
unsigned char *RADEONMMIO = info->MMIO;
- RADEON_SYNC(info, pScrn);
-
if (crtc_id == 0)
OUTREGP(RADEON_CRTC_GEN_CNTL, RADEON_CRTC_CUR_EN | 2 << 20,
~(RADEON_CRTC_CUR_EN | RADEON_CRTC_CUR_MODE_MASK));
@@ -125,8 +123,6 @@ radeon_crtc_hide_cursor (xf86CrtcPtr crtc)
RADEONInfoPtr info = RADEONPTR(pScrn);
unsigned char *RADEONMMIO = info->MMIO;
- RADEON_SYNC(info, pScrn);
-
if (crtc_id == 0)
OUTREGP(RADEON_CRTC_GEN_CNTL, 0, ~RADEON_CRTC_CUR_EN);
else if (crtc_id == 1)