We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 519d819 commit 3cfc183Copy full SHA for 3cfc183
drivers/gpu/drm/mxsfb/mxsfb_drv.c
@@ -173,7 +173,11 @@ static void mxsfb_irq_disable(struct drm_device *drm)
173
struct mxsfb_drm_private *mxsfb = drm->dev_private;
174
175
mxsfb_enable_axi_clk(mxsfb);
176
- mxsfb->crtc.funcs->disable_vblank(&mxsfb->crtc);
+
177
+ /* Disable and clear VBLANK IRQ */
178
+ writel(CTRL1_CUR_FRAME_DONE_IRQ_EN, mxsfb->base + LCDC_CTRL1 + REG_CLR);
179
+ writel(CTRL1_CUR_FRAME_DONE_IRQ, mxsfb->base + LCDC_CTRL1 + REG_CLR);
180
181
mxsfb_disable_axi_clk(mxsfb);
182
}
183
0 commit comments