diff options
author | Alex Deucher <alex@cube.(none)> | 2008-03-06 09:53:51 -0500 |
---|---|---|
committer | Alex Deucher <alex@cube.(none)> | 2008-03-06 09:53:51 -0500 |
commit | 8a1ba374033591c725a78923aa30829e4de2a5ae (patch) | |
tree | a1616adce77a77e0e93aab3ef492920815328ef3 /src/radeon_bios.c | |
parent | 0ed48f8f651a28e189f9fee8c6b593da0178d21c (diff) |
RADEON: option to override TVDAC adj values from bios with driver defaults
If you have a washed out image on the tv dac, try this option.
Option "DefaultTVDACAdj" "TRUE"
Diffstat (limited to 'src/radeon_bios.c')
-rw-r--r-- | src/radeon_bios.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/radeon_bios.c b/src/radeon_bios.c index 3848e601..a32188d5 100644 --- a/src/radeon_bios.c +++ b/src/radeon_bios.c @@ -620,6 +620,9 @@ Bool RADEONGetDAC2InfoFromBIOS (xf86OutputPtr output) if (!info->VBIOS) return FALSE; + if (xf86ReturnOptValBool(info->Options, OPTION_DEFAULT_TVDAC_ADJ, FALSE)) + return FALSE; + if (info->IsAtomBios) { /* not implemented yet */ return FALSE; |