summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2009-10-15 12:38:37 -0400
committerAlex Deucher <alexdeucher@gmail.com>2009-10-15 12:38:37 -0400
commiteef20d73e0527acd00b49c893e406b8e986899a9 (patch)
tree32d1c45828ff17b9a5394ea7f173f0a91b751d72
parentbfb6e13736fcd215acf7a5a3bfcf558c180ebc41 (diff)
rs880: fix gart type
rs880 needs to be treated as pcie just like rs780. Fixes DRI init.
-rw-r--r--src/rhd_driver.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rhd_driver.c b/src/rhd_driver.c
index e502c5f..f08c097 100644
--- a/src/rhd_driver.c
+++ b/src/rhd_driver.c
@@ -3061,7 +3061,8 @@ rhdGetCardType(RHDPtr rhdPtr)
{
uint32_t cmd_stat;
- if (rhdPtr->ChipSet == RHD_RS780)
+ if ((rhdPtr->ChipSet == RHD_RS780) ||
+ (rhdPtr->ChipSet == RHD_RS880))
return RHD_CARD_PCIE;
#ifdef XSERVER_LIBPCIACCESS