diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2010-04-22 16:48:21 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2010-04-22 16:48:21 -0400 |
commit | 1ad41054989f7c3edec373ccf09dceda6d7c94b4 (patch) | |
tree | a0bfd37bbd321ddac3a18887fb49b3d100ece2d3 /src/radeon_accel.c | |
parent | 59e287d7c484b4addd4a06d013670577639c7ae2 (diff) |
r3xx: fix gb pipe setup for SE cards
Noticed by Tormod Volden
Diffstat (limited to 'src/radeon_accel.c')
-rw-r--r-- | src/radeon_accel.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/radeon_accel.c b/src/radeon_accel.c index 823f91d6..92503d9f 100644 --- a/src/radeon_accel.c +++ b/src/radeon_accel.c @@ -499,9 +499,11 @@ void RADEONEngineInit(ScrnInfoPtr pScrn) } } - /* RV410 SE cards only have 1 quadpipe */ + /* SE cards only have 1 quadpipe */ if ((info->Chipset == PCI_CHIP_RV410_5E4C) || - (info->Chipset == PCI_CHIP_RV410_5E4F)) + (info->Chipset == PCI_CHIP_RV410_5E4F) || + (info->Chipset == PCI_CHIP_R300_AD) || + (info->Chipset == PCI_CHIP_R350_AH)) info->accel_state->num_gb_pipes = 1; if (IS_R300_3D || IS_R500_3D) |