summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/radeon_output.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c
index 599a89c..a5e07d7 100644
--- a/src/radeon_output.c
+++ b/src/radeon_output.c
@@ -1671,9 +1671,13 @@ radeon_detect(xf86OutputPtr output)
* 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))
+ radeon_output->DACType == DAC_TVDAC)) {
+ radeon_output->MonType = MT_CRT;
return XF86OutputStatusUnknown;
+ } else if (info->IsIGP && radeon_output->type == OUTPUT_DVI) {
+ radeon_output->MonType = MT_DFP; /* MT_LCD ??? */
+ return XF86OutputStatusUnknown;
+ }
}
if (connected)