diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-03-13 13:22:03 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-03-13 17:58:06 -0400 |
commit | d538a4508248adf2debaf0cc870a2d1c48abd986 (patch) | |
tree | 36c0d2a029b5aef2f0126e3a89085d3020d69454 | |
parent | 1b7090a4c0d6a38701fbfb928fac8e15d40fb81f (diff) |
R6xx/r7xx: clarify accel messages
We only support EXA and and only with DRI.
-rw-r--r-- | src/radeon_driver.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 47a40abf..2e4967f1 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -2057,9 +2057,10 @@ static Bool RADEONPreInitAccel(ScrnInfoPtr pScrn) info->useEXA = TRUE; #endif /* !USE_XAA */ #endif /* USE_EXA */ - xf86DrvMsg(pScrn->scrnIndex, from, - "Using %s acceleration architecture\n", - info->useEXA ? "EXA" : "XAA"); + if (info->ChipFamily < CHIP_FAMILY_R600) + xf86DrvMsg(pScrn->scrnIndex, from, + "Using %s acceleration architecture\n", + info->useEXA ? "EXA" : "XAA"); #ifdef USE_EXA if (info->useEXA) { |