summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVladimir Dergachev <volodya@mindspring.com>2005-03-04 05:48:31 +0000
committerVladimir Dergachev <volodya@mindspring.com>2005-03-04 05:48:31 +0000
commit7d37a9f1f9fffe98067c3b5bc4749cc799fb0c77 (patch)
tree6a414862cd66c2ef9a3dda814f6f6e5aa0270908 /src
parentf1edbb7852d85f660188498f578a0a697c2094fe (diff)
programs/Xserver/hw/xfree86/drivers/ati/radeon_dri.c Turns out Radeon R420
chips work fine with R300 microcode. Thanks go to Rune Petersen for careful investigation.
Diffstat (limited to 'src')
-rw-r--r--src/radeon_dri.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/radeon_dri.c b/src/radeon_dri.c
index 72132232..5eba4553 100644
--- a/src/radeon_dri.c
+++ b/src/radeon_dri.c
@@ -1037,7 +1037,8 @@ static int RADEONDRIKernelInit(RADEONInfoPtr info, ScreenPtr pScreen)
memset(&drmInfo, 0, sizeof(drmRadeonInit));
if ( (info->ChipFamily == CHIP_FAMILY_R300) ||
(info->ChipFamily == CHIP_FAMILY_R350) ||
- (info->ChipFamily == CHIP_FAMILY_RV350) )
+ (info->ChipFamily == CHIP_FAMILY_RV350) ||
+ (info->ChipFamily == CHIP_FAMILY_R420) )
drmInfo.func = DRM_RADEON_INIT_R300_CP;
else
if ( info->ChipFamily >= CHIP_FAMILY_R200 )