summary refs log tree commit diff
diff options
context:
space:
mode:
authorLiu Ying <Ying.Liu@freescale.com>2015-11-20 16:14:11 +0800
committerPhilipp Zabel <p.zabel@pengutronix.de>2016-03-01 08:33:39 +0100
commitbeec8ec0bd58bd231ab7c603450707ed7c571506 (patch)
treed2d769da06c2d3e0b1e2db1c4bca24a6c0b7ef44
parent86bdb09f044e1604add914e94d4f472052780ad9 (diff)
downloadlinux-beec8ec0bd58bd231ab7c603450707ed7c571506.tar.gz
drm/imx: ipuv3 plane: Replace dev_info with dev_dbg if a plane's CRTC changes
This patch changes the dev_info() call to dev_dbg() in ipu_plane_update()
to print out the information that a plane's CRTC is changed, because this
kind of information is only useful for debugging.

Signed-off-by: Liu Ying <Ying.Liu@freescale.com>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
-rw-r--r--drivers/gpu/drm/imx/ipuv3-plane.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/imx/ipuv3-plane.c b/drivers/gpu/drm/imx/ipuv3-plane.c
index 591ba2f1ae03..d078373c4233 100644
--- a/drivers/gpu/drm/imx/ipuv3-plane.c
+++ b/drivers/gpu/drm/imx/ipuv3-plane.c
@@ -338,7 +338,7 @@ static int ipu_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
 	}
 
 	if (crtc != plane->crtc)
-		dev_info(plane->dev->dev, "crtc change: %p -> %p\n",
+		dev_dbg(plane->dev->dev, "crtc change: %p -> %p\n",
 				plane->crtc, crtc);
 	plane->crtc = crtc;