summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/intel_dp.c
diff options
context:
space:
mode:
authorAndy Shevchenko2015-01-15 12:45:09 +0100
committerDaniel Vetter2015-01-17 05:06:40 +0100
commit6f34cc393f6407fbec91ff6d4fd1e29fe86b59d5 (patch)
tree0d323d69defaca5fef87e1f4d443a44a0b230df7 /drivers/gpu/drm/i915/intel_dp.c
parentdrm/i915: Ensure the HiZ RAW Stall Optimization is on for Cherryview. (diff)
downloadkernel-qcow2-linux-6f34cc393f6407fbec91ff6d4fd1e29fe86b59d5.tar.gz
kernel-qcow2-linux-6f34cc393f6407fbec91ff6d4fd1e29fe86b59d5.tar.xz
kernel-qcow2-linux-6f34cc393f6407fbec91ff6d4fd1e29fe86b59d5.zip
i915: reuse %ph to dump small buffers
Instead of pushing each byte via stack the specifier allows to supply the pointer and length to dump buffers up to 64 bytes long. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_dp.c')
-rw-r--r--drivers/gpu/drm/i915/intel_dp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
index 88d81a8b0d35..df7b558f3222 100644
--- a/drivers/gpu/drm/i915/intel_dp.c
+++ b/drivers/gpu/drm/i915/intel_dp.c
@@ -3773,7 +3773,7 @@ go_again:
intel_dp_stop_link_train(intel_dp);
}
- DRM_DEBUG_KMS("got esi %02x %02x %02x\n", esi[0], esi[1], esi[2]);
+ DRM_DEBUG_KMS("got esi %3ph\n", esi);
ret = drm_dp_mst_hpd_irq(&intel_dp->mst_mgr, esi, &handled);
if (handled) {
@@ -3789,7 +3789,7 @@ go_again:
bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
if (bret == true) {
- DRM_DEBUG_KMS("got esi2 %02x %02x %02x\n", esi[0], esi[1], esi[2]);
+ DRM_DEBUG_KMS("got esi2 %3ph\n", esi);
goto go_again;
}
} else