diff options
author | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-05-18 23:30:19 -0400 |
---|---|---|
committer | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-05-18 23:30:19 -0400 |
commit | bbd6faff4c6acb48970d774375c8a61861405f96 (patch) | |
tree | 7412b016c0b357198f578b9626867211dc85907c | |
parent | 7940ec364f3cbf02ba64b92c74cbaad4555baf38 (diff) |
RADEON: Change default LVDS i2c line for powerpc
-rw-r--r-- | src/radeon_output.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index 924c3e0..3247b74 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -482,7 +482,11 @@ Bool RADEONSetupConnectors(ScrnInfoPtr pScrn) (info->BiosConnector[1].DDCType == 0))) { if (info->IsMobility) { /* Below is the most common setting, but may not be true */ +#if defined(__powerpc__) + info->BiosConnector[0].DDCType = DDC_DVI; +#else info->BiosConnector[0].DDCType = DDC_LCD; +#endif info->BiosConnector[0].DACType = DAC_UNKNOWN; info->BiosConnector[0].TMDSType = TMDS_UNKNOWN; info->BiosConnector[0].ConnectorType = CONNECTOR_PROPRIETARY; |