aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm
diff options
context:
space:
mode:
authorLespiau, Damien <damien.lespiau@intel.com>2014-03-24 11:53:10 -0400
committerDave Airlie <airlied@redhat.com>2014-03-27 22:57:04 -0400
commit133dcdebb205b8918ae31ef79323c94923944f23 (patch)
treec7552abae1fd12d76137c106b2eec8534d816dca /drivers/gpu/drm
parent98a48237f4e61afcc4c38950e2608539eced9040 (diff)
drm/exynos: Replace DRM_LOG_KMS() by DRM_DEBUG_KMS()
There are only a few users of the DRM_LOG_KMS() macro. We can simplify the DRM code a bit by replacing them by DRM_DEBUG_KMS(). Cc: Inki Dae <inki.dae@samsung.com> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_fbdev.c2
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_plane.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fbdev.c b/drivers/gpu/drm/exynos/exynos_drm_fbdev.c
index e7c2f2d07f19..5fa342e5f963 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_fbdev.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_fbdev.c
@@ -90,7 +90,7 @@ static int exynos_drm_fbdev_update(struct drm_fb_helper *helper,
90 /* RGB formats use only one buffer */ 90 /* RGB formats use only one buffer */
91 buffer = exynos_drm_fb_buffer(fb, 0); 91 buffer = exynos_drm_fb_buffer(fb, 0);
92 if (!buffer) { 92 if (!buffer) {
93 DRM_LOG_KMS("buffer is null.\n"); 93 DRM_DEBUG_KMS("buffer is null.\n");
94 return -EFAULT; 94 return -EFAULT;
95 } 95 }
96 96
diff --git a/drivers/gpu/drm/exynos/exynos_drm_plane.c b/drivers/gpu/drm/exynos/exynos_drm_plane.c
index e0db2b3f7ada..8371cbd7631d 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_plane.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_plane.c
@@ -87,7 +87,7 @@ int exynos_plane_mode_set(struct drm_plane *plane, struct drm_crtc *crtc,
87 struct exynos_drm_gem_buf *buffer = exynos_drm_fb_buffer(fb, i); 87 struct exynos_drm_gem_buf *buffer = exynos_drm_fb_buffer(fb, i);
88 88
89 if (!buffer) { 89 if (!buffer) {
90 DRM_LOG_KMS("buffer is null\n"); 90 DRM_DEBUG_KMS("buffer is null\n");
91 return -EFAULT; 91 return -EFAULT;
92 } 92 }
93 93