diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2010-10-24 11:24:07 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2010-10-24 11:24:07 -0400 |
commit | 1e3ede62c39307d0210cb2044badd619a4f44fec (patch) | |
tree | fe552bc5a4b6574c62da1f2b53fe3f6054bc4527 | |
parent | 51f26a7f01b68e373867c03881868ca8830664d6 (diff) |
UMS/atom: default to DVI mode if we don't have monitor hdmi info
Fixes:
https://bugs.freedesktop.org/show_bug.cgi?id=30330
-rw-r--r-- | src/atombios_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atombios_output.c b/src/atombios_output.c index a028be03..6bcc293f 100644 --- a/src/atombios_output.c +++ b/src/atombios_output.c @@ -410,7 +410,7 @@ atombios_maybe_hdmi_mode(xf86OutputPtr output) { #ifndef EDID_COMPLETE_RAWDATA /* there's no getting this right unless we have complete EDID */ - return ATOM_ENCODER_MODE_HDMI; + return ATOM_ENCODER_MODE_DVI; #else if (output && xf86MonitorIsHDMI(output->MonInfo)) return ATOM_ENCODER_MODE_HDMI; |