diff options
author | Michel Daenzer <michel@daenzer.net> | 2005-11-08 16:30:48 +0000 |
---|---|---|
committer | Michel Daenzer <michel@daenzer.net> | 2005-11-08 16:30:48 +0000 |
commit | 999f67763a5ea9fef7b7b576262f0da079efcfee (patch) | |
tree | b7421661f11dabe7d0dd45819e2bdd02a3037160 | |
parent | 5aa401efa0b8d81da418eafeb857142a33f85da9 (diff) |
bugzilla #988 (https://bugs.freedesktop.org/show_bug.cgi?id=988) Fix typo
which may or may not have had a negative impact on stability with R300
class cards.
-rw-r--r-- | src/radeon_accel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_accel.c b/src/radeon_accel.c index 5934a9c..1503298 100644 --- a/src/radeon_accel.c +++ b/src/radeon_accel.c @@ -279,7 +279,7 @@ void RADEONEngineReset(ScrnInfoPtr pScrn) INREG(RADEON_HOST_PATH_CNTL); OUTREG(RADEON_HOST_PATH_CNTL, host_path_cntl); - if (IS_R300_VARIANT) + if (!IS_R300_VARIANT) OUTREG(RADEON_RBBM_SOFT_RESET, rbbm_soft_reset); OUTREG(RADEON_CLOCK_CNTL_INDEX, clock_cntl_index); |