From ec236c76b93aea5f2ee1e8b8509cde4625974fcb Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Fri, 22 Jun 2007 16:32:46 +0100 Subject: [PATCH] I830 needs to have plane/pipe/pll started in mode_set. The patch for the i855 to stop enabling plane/pipe/pll in mode_set broke the i830. Revert that just for the i830, leaving it enabled for the i855. --- src/i830_display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i830_display.c b/src/i830_display.c index 1f0f5b80..f6e99be0 100644 --- a/src/i830_display.c +++ b/src/i830_display.c @@ -963,7 +963,7 @@ i830_crtc_mode_set(xf86CrtcPtr crtc, DisplayModePtr mode, * will be run after the mode is set. On 9xx, it helps. * On 855, it can lock up the chip (and the entire machine) */ - if (IS_I9XX (pI830)) + if (!IS_I85X (pI830)) { dspcntr |= DISPLAY_PLANE_ENABLE; pipeconf |= PIPEACONF_ENABLE;