summaryrefslogtreecommitdiff
path: root/src/radeon_driver.c
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2009-03-04 19:04:34 -0500
committerAlex Deucher <alexdeucher@gmail.com>2009-03-04 19:04:34 -0500
commit3b0fc22ad9e5c0f120a74c4f3d8e48c270f0ff29 (patch)
tree88b8955d582697192344f8b09e5ec38b3bcfb64d /src/radeon_driver.c
parent52f06ace04ad8141effc45fb6a0107a05bb46a73 (diff)
R6xx/R7xx: wire up DMAForXv option like older asics
Select between SW and HW-assisted uploads
Diffstat (limited to 'src/radeon_driver.c')
-rw-r--r--src/radeon_driver.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c
index 8a28f3f2..0842164c 100644
--- a/src/radeon_driver.c
+++ b/src/radeon_driver.c
@@ -2345,10 +2345,7 @@ static Bool RADEONPreInitDRI(ScrnInfoPtr pScrn)
xf86DrvMsg(pScrn->scrnIndex, from, "Page Flipping %sabled%s\n",
info->dri->allowPageFlip ? "en" : "dis", reason);
- if (info->ChipFamily >= CHIP_FAMILY_R600)
- info->DMAForXv = FALSE;
- else
- info->DMAForXv = TRUE;
+ info->DMAForXv = TRUE;
from = xf86GetOptValBool(info->Options, OPTION_XV_DMA, &info->DMAForXv)
? X_CONFIG : X_INFO;
xf86DrvMsg(pScrn->scrnIndex, from,