diff options
author | Eric Anholt <eric@anholt.net> | 2006-10-05 16:02:02 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2006-10-05 16:16:45 -0700 |
commit | 9bb7736ab36f172db58703c4664bb1b0cd7f80c3 (patch) | |
tree | ff913af4d4370a70c45702d1f6e1eb22b9ce6abd /src/i830_modes.c | |
parent | ada8f62da263d1e93e22df4e0b1149bf1dbe24d4 (diff) |
Remove checks for output privates in various bits of code.
Now, the output is only set up if it fully initializes, so it will never exist
if the private it requires doesn't.
Diffstat (limited to 'src/i830_modes.c')
-rw-r--r-- | src/i830_modes.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/i830_modes.c b/src/i830_modes.c index da1ccde8..f7d46950 100644 --- a/src/i830_modes.c +++ b/src/i830_modes.c @@ -763,14 +763,12 @@ I830ReprobePipeModeList(ScrnInfoPtr pScrn, int pipe) } break; case I830_OUTPUT_DVO: - if (outputs & PIPE_DFP && pI830->output[i].i2c_drv != NULL) { + if (outputs & PIPE_DFP) { output_index = i; } break; case I830_OUTPUT_SDVO: - if (outputs & PIPE_DFP && - pI830->output[i].sdvo_drv != NULL) - { + if (outputs & PIPE_DFP) { output_index = i; } break; |