summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/dvo_ch7xxx.c
diff options
context:
space:
mode:
authorLespiau, Damien2014-03-24 16:53:12 +0100
committerDave Airlie2014-03-28 03:57:10 +0100
commit29139e4b33d78edf09e50f72c6bfe862b464b915 (patch)
treeeb792aec0abd4b96d777bf409875ad2bc9aa5489 /drivers/gpu/drm/i915/dvo_ch7xxx.c
parentdrm/gma500: Replace DRM_LOG_KMS() by DRM_DEBUG_KMS() (diff)
downloadkernel-qcow2-linux-29139e4b33d78edf09e50f72c6bfe862b464b915.tar.gz
kernel-qcow2-linux-29139e4b33d78edf09e50f72c6bfe862b464b915.tar.xz
kernel-qcow2-linux-29139e4b33d78edf09e50f72c6bfe862b464b915.zip
drm/i915: 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(). Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/i915/dvo_ch7xxx.c')
-rw-r--r--drivers/gpu/drm/i915/dvo_ch7xxx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/dvo_ch7xxx.c b/drivers/gpu/drm/i915/dvo_ch7xxx.c
index af42e94f6846..a0f5bdd69491 100644
--- a/drivers/gpu/drm/i915/dvo_ch7xxx.c
+++ b/drivers/gpu/drm/i915/dvo_ch7xxx.c
@@ -340,9 +340,9 @@ static void ch7xxx_dump_regs(struct intel_dvo_device *dvo)
for (i = 0; i < CH7xxx_NUM_REGS; i++) {
uint8_t val;
if ((i % 8) == 0)
- DRM_LOG_KMS("\n %02X: ", i);
+ DRM_DEBUG_KMS("\n %02X: ", i);
ch7xxx_readb(dvo, i, &val);
- DRM_LOG_KMS("%02X ", val);
+ DRM_DEBUG_KMS("%02X ", val);
}
}