drm/rockchip: fix mistake for disable_vblank

Change-Id: Ib3b4bef2122a472289be347dc64f91ce32d65fb6
Signed-off-by: Sandy Huang <hjc@rock-chips.com>
This commit is contained in:
Sandy Huang
2018-05-07 15:24:31 +08:00
committed by Tao Huang
parent b67987fa85
commit 2903fe52c7

View File

@@ -987,7 +987,7 @@ static void rockchip_drm_crtc_disable_vblank(struct drm_device *dev,
struct drm_crtc *crtc = rockchip_crtc_from_pipe(dev, pipe);
if (crtc && priv->crtc_funcs[pipe] &&
priv->crtc_funcs[pipe]->enable_vblank)
priv->crtc_funcs[pipe]->disable_vblank)
priv->crtc_funcs[pipe]->disable_vblank(crtc);
}