瀏覽代碼

disp: msm: sde: remove unnecessary debug message

Move print message from error to debug for a failure that is not fatal
but can be expected when a crtc doesn't have a hw ctl, in this case
driver will handle the output fence as a sw-fence.

Change-Id: I908135dce4336b0c9ec3fa388dc9211c6df97f68
Signed-off-by: Ingrid Gallardo <[email protected]>
Ingrid Gallardo 2 年之前
父節點
當前提交
d57732d554
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      msm/sde/sde_crtc.c

+ 1 - 1
msm/sde/sde_crtc.c

@@ -3708,7 +3708,7 @@ static struct sde_hw_ctl *_sde_crtc_get_hw_ctl(struct drm_crtc *drm_crtc)
 	struct sde_crtc *sde_crtc = to_sde_crtc(drm_crtc);
 
 	if (!sde_crtc || !sde_crtc->mixers[0].hw_ctl) {
-		DRM_ERROR("invalid crtc params %d\n", !sde_crtc);
+		SDE_DEBUG("invalid crtc params %d\n", !sde_crtc);
 		return NULL;
 	}