diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2010-11-30 15:51:21 -0500 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2010-11-30 15:51:21 -0500 |
commit | e142e55c56d8440d7185b594c696ec9eeb699cda (patch) | |
tree | a757ed8345f99f37430cac2dfd4ff2bd0f0cf2f4 /src | |
parent | 90f831361844f1b80b3f6bb718ff5ac584d73d48 (diff) |
evergreen: set default group_bytes to 256
512 seems to cause issues on certain cards.
Fixes:
https://bugs.freedesktop.org/show_bug.cgi?id=31724
Diffstat (limited to 'src')
-rw-r--r-- | src/radeon_kms.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/radeon_kms.c b/src/radeon_kms.c index 0cd419f2..f4c54b30 100644 --- a/src/radeon_kms.c +++ b/src/radeon_kms.c @@ -603,11 +603,8 @@ Bool RADEONPreInit_KMS(ScrnInfoPtr pScrn, int flags) info->ChipFamily <= CHIP_FAMILY_RS740; if (info->ChipFamily >= CHIP_FAMILY_R600) { - /* set default group bytes, overriden by kernel info below */ - if (info->ChipFamily >= CHIP_FAMILY_CEDAR) - info->group_bytes = 512; - else - info->group_bytes = 256; + /* set default group bytes, overridden by kernel info below */ + info->group_bytes = 256; if (info->dri->pKernelDRMVersion->version_minor >= 6) { info->allowColorTiling = xf86ReturnOptValBool(info->Options, OPTION_COLOR_TILING, colorTilingDefault); |