diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2006-07-10 17:17:51 -0700 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2006-07-10 17:19:19 -0700 |
commit | f5a01a2ef02125611d5fb74c20d53d52e544701a (patch) | |
tree | 4090301fedd1d161d06dcb5fe2e68d5229efa6af /src/i830_modes.c | |
parent | 23a0ee73bce12f9e0b881af420413aeec4c0517f (diff) |
Make DVO code light up my sil164-based DVI output, when already set up by BIOS.
Diffstat (limited to 'src/i830_modes.c')
-rw-r--r-- | src/i830_modes.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/i830_modes.c b/src/i830_modes.c index e1d8570b..1a572d16 100644 --- a/src/i830_modes.c +++ b/src/i830_modes.c @@ -729,6 +729,11 @@ I830ReprobePipeModeList(ScrnInfoPtr pScrn, int pipe) output_index = i; } break; + case I830_OUTPUT_DVO: + if (outputs & PIPE_DFP && pI830->output[i].i2c_drv != NULL) { + output_index = i; + } + break; case I830_OUTPUT_SDVO: if (outputs & PIPE_DFP && pI830->output[i].sdvo_drv != NULL) |