diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-03-31 15:14:27 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-03-31 15:14:27 -0400 |
commit | 10fbbac4bed59e12ad794ac873dd415d9ee4e340 (patch) | |
tree | 192c1dfa71514e406545bd31f2a00faef44402c9 | |
parent | 8f2a03bfc86422669a46c2853050979f099a17a8 (diff) |
Mac mini: fix connector setup for real
fixes f061308e7abcf93d1612681b935387fee23e0a24
fixes bugs 20796 and 20979
-rw-r--r-- | src/radeon_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index b5fe0ac4..8dd0842f 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -2085,7 +2085,7 @@ static Bool RADEONSetupAppleConnectors(ScrnInfoPtr pScrn) info->BiosConnector[0].devices = ATOM_DEVICE_CRT2_SUPPORT | ATOM_DEVICE_DFP2_SUPPORT; if (!radeon_add_encoder(pScrn, radeon_get_encoder_id_from_supported_device(pScrn, - ATOM_DEVICE_CRT1_SUPPORT, + ATOM_DEVICE_CRT2_SUPPORT, 1), ATOM_DEVICE_CRT2_SUPPORT)) return FALSE; @@ -2116,7 +2116,7 @@ static Bool RADEONSetupAppleConnectors(ScrnInfoPtr pScrn) info->BiosConnector[0].devices = ATOM_DEVICE_CRT2_SUPPORT | ATOM_DEVICE_DFP1_SUPPORT; if (!radeon_add_encoder(pScrn, radeon_get_encoder_id_from_supported_device(pScrn, - ATOM_DEVICE_CRT1_SUPPORT, + ATOM_DEVICE_CRT2_SUPPORT, 1), ATOM_DEVICE_CRT2_SUPPORT)) return FALSE; |