diff options
author | Liu Ying <Ying.Liu@freescale.com> | 2015-11-20 16:14:11 +0800 |
---|---|---|
committer | Philipp Zabel <p.zabel@pengutronix.de> | 2016-03-01 08:33:39 +0100 |
commit | beec8ec0bd58bd231ab7c603450707ed7c571506 (patch) | |
tree | d2d769da06c2d3e0b1e2db1c4bca24a6c0b7ef44 /drivers/gpu/drm/imx | |
parent | 86bdb09f044e1604add914e94d4f472052780ad9 (diff) | |
download | op-kernel-dev-beec8ec0bd58bd231ab7c603450707ed7c571506.zip op-kernel-dev-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>
Diffstat (limited to 'drivers/gpu/drm/imx')
-rw-r--r-- | drivers/gpu/drm/imx/ipuv3-plane.c | 2 |
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 591ba2f..d078373 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; |