Try to always probe SDVOC on 965G/965GM

Detect bit of SDVOC is reserved on 965G/965GM, instead of ignore SDVOC
this trys to always probe it on these chipsets.
This commit is contained in:
Zhenyu Wang 2008-12-10 10:54:31 +08:00
parent f5f67e1b54
commit 1e974ff6b8
1 changed files with 3 additions and 1 deletions

View File

@ -919,7 +919,9 @@ I830SetupOutputs(ScrnInfoPtr pScrn)
i830_hdmi_init(pScrn, SDVOB);
}
if ((INREG(SDVOC) & SDVO_DETECTED) || pI830->force_sdvo_detect) {
if ((INREG(SDVOC) & SDVO_DETECTED) || pI830->force_sdvo_detect ||
/* SDVOC detect bit is reserved on 965G/965GM */
(IS_I965G(pI830) && !IS_G4X(pI830))) {
Bool found = i830_sdvo_init(pScrn, SDVOC);
if (!found && SUPPORTS_INTEGRATED_HDMI(pI830))