diff options
author | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-10-25 19:18:18 -0400 |
---|---|---|
committer | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-10-25 19:18:18 -0400 |
commit | 2d26e0d0bcf25e210dc7771e76638dcfafcc2356 (patch) | |
tree | da3802d2f6e9840793bdd60f035bb0faae65b764 /src/radeon_output.c | |
parent | a9306b7986467c0794c91625ad2ece597b718462 (diff) |
RADEON: Add driver option to force TV DAC load detection on
Diffstat (limited to 'src/radeon_output.c')
-rw-r--r-- | src/radeon_output.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index 214167fd..39cbdb9f 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -1771,13 +1771,15 @@ radeon_create_resources(xf86OutputPtr output) if (err != 0) { xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "RRConfigureOutputProperty error, %d\n", err); - } + } if (radeon_output->DACType == DAC_PRIMARY) data = 1; /* primary dac, only drives vga */ /*else if (radeon_output->DACType == DAC_TVDAC && info->tvdac_use_count < 2) data = 1;*/ /* only one output with tvdac */ + else if (xf86ReturnOptValBool(info->Options, OPTION_TVDAC_LOAD_DETECT, FALSE)) + data = 1; /* user forces on tv dac load detection */ else data = 0; /* shared tvdac between vga/dvi/tv */ |