diff --git a/src/i830_display.c b/src/i830_display.c index 022d519..f009ac0 100644 --- a/src/i830_display.c +++ b/src/i830_display.c @@ -1291,9 +1291,10 @@ i830_crtc_mode_set(xf86CrtcPtr crtc, DisplayModePtr mode, } ok = i830FindBestPLL(crtc, adjusted_mode->Clock, refclk, &clock); - if (!ok) + if (!ok) { + xf86PrintModeline(pScrn->scrnIndex, adjusted_mode); FatalError("Couldn't find PLL settings for mode!\n"); - + } if (fabs(adjusted_mode->Clock - clock.dot) / clock.dot > .02) { xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "Chosen PLL clock of %.1f Mhz more than 2%% away from " diff --git a/src/i830_lvds.c b/src/i830_lvds.c index 639450a..c9474b0 100644 --- a/src/i830_lvds.c +++ b/src/i830_lvds.c @@ -533,6 +533,9 @@ i830_lvds_mode_fixup(xf86OutputPtr output, DisplayModePtr mode, /* If we don't have a panel mode there's not much we can do */ if (pI830->lvds_fixed_mode == NULL) return TRUE; + + xf86DrvMsg(pScrn->scrnIndex, X_INFO, "\n DEBUG PRINT LVDS_FIXED_MODE MODELINE:\n"); + xf86PrintModeline(pScrn->scrnIndex, pI830->lvds_fixed_mode); /* If we have timings from the BIOS for the panel, put them in * to the adjusted mode. The CRTC will be set up for this mode,