summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/radeon_output.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c
index 643cbc4e..4229eee8 100644
--- a/src/radeon_output.c
+++ b/src/radeon_output.c
@@ -1647,6 +1647,16 @@ radeon_detect(xf86OutputPtr output)
break;
}
+ if (!connected) {
+ /* default to unknown for flaky chips/connectors
+ * so we can get something on the screen
+ */
+ if (((radeon_output->type == OUTPUT_VGA || radeon_output->type == OUTPUT_DVI) &&
+ radeon_output->DACType == DAC_TVDAC) ||
+ (info->IsIGP && radeon_output->type == OUTPUT_DVI))
+ return XF86OutputStatusUnknown;
+ }
+
if (connected)
return XF86OutputStatusConnected;
else