summaryrefslogtreecommitdiff
path: root/src/radeon_output.c
diff options
context:
space:
mode:
authorAlex Deucher <alex@botch2.(none)>2007-11-08 19:28:03 -0500
committerAlex Deucher <alex@botch2.(none)>2007-11-08 19:28:03 -0500
commit5cdcaba0f6e9de2d15cfcc109ab97d9fd423e3bf (patch)
treec0fb2f01ea9efad2402e701b556562d22964c2fc /src/radeon_output.c
parent2dcb852778301b9284a2b4906dcf64f95ed638b7 (diff)
make sure to assign gpio
Diffstat (limited to 'src/radeon_output.c')
-rw-r--r--src/radeon_output.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c
index 60e17db..ca9b110 100644
--- a/src/radeon_output.c
+++ b/src/radeon_output.c
@@ -258,7 +258,7 @@ void RADEONPrintPortMap(ScrnInfoPtr pScrn)
radeon_output = output->driver_private;
xf86DrvMsg(pScrn->scrnIndex, X_INFO,
- "Port%d:\n Monitor -- %s\n Connector -- %s\n DAC Type -- %s\n TMDS Type -- %s\n DDC Type -- %s\n",
+ "Port%d:\n Monitor -- %s\n Connector -- %s\n DAC Type -- %s\n TMDS Type -- %s\n DDC Type -- %s [0x%x]\n",
o,
MonTypeName[radeon_output->MonType+1],
info->IsAtomBios ?
@@ -266,7 +266,8 @@ void RADEONPrintPortMap(ScrnInfoPtr pScrn)
ConnectorTypeName[radeon_output->ConnectorType],
DACTypeName[radeon_output->DACType+1],
TMDSTypeName[radeon_output->TMDSType+1],
- DDCTypeName[radeon_output->DDCType]);
+ DDCTypeName[radeon_output->DDCType],
+ radeon_output->gpio);
}
}
@@ -3238,6 +3239,7 @@ Bool RADEONSetupConnectors(ScrnInfoPtr pScrn)
}
radeon_output->MonType = MT_UNKNOWN;
radeon_output->ConnectorType = info->BiosConnector[i].ConnectorType;
+ radeon_output->gpio = info->BiosConnector[i].gpio;
radeon_output->DDCType = info->BiosConnector[i].DDCType;
if (info->IsAtomBios) {
if (radeon_output->ConnectorType == CONNECTOR_DVI_D_ATOM)