[Bug 12770] ati driver 6.7.194 put LCD in "out of sync" with a xorg.conf that was working with 6.6.x

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Thu Oct 11 10:28:34 PDT 2007


http://bugs.freedesktop.org/show_bug.cgi?id=12770





------- Comment #18 from agd5f at yahoo.com  2007-10-11 10:31 PST -------
whoops, sorry, in radeon_modes.c::RADEONProbeOutputModes() you can do one of
the following (in addition to the previous change):

1.add:

    return modes;

between lines 226 and 227

or 

2. add:

    RADEONAddScreenModes(output, &modes);
    return modes;

between lines 226 and 227

1. will just return a null set of nodes and the server will add some defaults. 
2. will add the modes specified in the screen section of your config.

the result should look like this:

if (radeon_output->type == OUTPUT_DVI || radeon_output->type == OUTPUT_VGA) {
    RADEONAddScreenModes(output, &modes);
    return modes;
}


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


More information about the xorg-driver-ati mailing list