diff options
author | Daniel Stone <daniel@freedesktop.org> | 2006-01-19 14:20:37 +0000 |
---|---|---|
committer | Daniel Stone <daniel@freedesktop.org> | 2006-01-19 14:20:37 +0000 |
commit | fb18e7083d5fb8d8012718d904db616b0fee1acd (patch) | |
tree | e99ab7c671115f47004794b33100184e9c83749e | |
parent | 78debd9ccd0892af2368777fe50f2067e7388157 (diff) |
Bug #5656: Set all Radeon XPRESS 200 R[CS]4xx-based chips to have IsIGP =
1, fixing modesetting issues.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/radeon_driver.c | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2006-01-19 Daniel Stone <daniel@freedesktop.org> + + * src/radeon_driver.c: + Bug #5656: Set all Radeon XPRESS 200 R[CS]4xx-based chips to + have IsIGP = 1, fixing modesetting issues. + 2006-01-12 Alan Coopersmith <alan.coopersmith@sun.com> * src/theatre200_module.c (theatre200VersRec): diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 163ea6e..27292d3 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -1,5 +1,5 @@ /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/ati/radeon_driver.c,v 1.117 2004/02/19 22:38:12 tsi Exp $ */ -/* $XdotOrg: $ */ +/* $XdotOrg: driver/xf86-video-ati/src/radeon_driver.c,v 1.84 2006/01/13 01:02:01 alanc Exp $ */ /* * Copyright 2000 ATI Technologies Inc., Markham, Ontario, and * VA Linux Systems Inc., Fremont, California. @@ -2582,7 +2582,7 @@ static Bool RADEONPreInitConfig(ScrnInfoPtr pScrn) case PCI_CHIP_RS480_5954: case PCI_CHIP_RS482_5974: info->ChipFamily = CHIP_FAMILY_RV380; /*CHIP_FAMILY_RS400*/ - /*info->IsIGP = TRUE;*/ /* ??? */ + info->IsIGP = TRUE; /*info->HasSingleDAC = TRUE;*/ /* ??? */ break; |