diff options
author | Kevin E. Martin <kem-at-freedesktop-dot-org> | 2004-08-25 00:30:41 +0000 |
---|---|---|
committer | Kevin E. Martin <kem-at-freedesktop-dot-org> | 2004-08-25 00:30:41 +0000 |
commit | c49bb47c7e3c85c37914676091e120e1e7222344 (patch) | |
tree | 4fa34f997e0fae7ab77f3ca2472b50ca59791c0f | |
parent | b3011530fde67387dfda375cf0fa6a1b0a5b09ad (diff) |
Fix hangs during startup with Radeon driver (Bug #1007, Sjoerd Simons).
Fix i810 driver startup on Sony VAIO laptop (Bug #1084, Dave Airlie).
Fix several library build problem (Bug #1147).
Fix build problems (Bugs #1148 and #1149).
-rw-r--r-- | src/radeon_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index f4103a2..cc90627 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -1364,8 +1364,8 @@ static Bool RADEONGetLVDSInfo (ScrnInfoPtr pScrn) info->Flags = 0; break; } - tmp_mode = tmp_mode->next; } + tmp_mode = tmp_mode->next; } if ((info->DotClock == 0) && !pRADEONEnt->PortInfo[0].MonInfo) { xf86DrvMsg(pScrn->scrnIndex, X_ERROR, |