aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/radeon/atombios_dp.c
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2012-09-05 12:04:19 +0000
committerDave Airlie <airlied@redhat.com>2012-09-13 11:28:30 +1000
commit9a6a4b4757175271bc3a289fcb5c69e897039379 (patch)
tree884ee5d857bfbf08b32258307be7d43f8cc76179 /drivers/gpu/drm/radeon/atombios_dp.c
parentdrm: edid: Refactor HDMI VSDB detection (diff)
downloadlinux-dev-9a6a4b4757175271bc3a289fcb5c69e897039379.tar.xz
linux-dev-9a6a4b4757175271bc3a289fcb5c69e897039379.zip
drm: use %*ph to dump small buffers
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/atombios_dp.c')
-rw-r--r--drivers/gpu/drm/radeon/atombios_dp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpu/drm/radeon/atombios_dp.c b/drivers/gpu/drm/radeon/atombios_dp.c
index 7712cf5ab33b..8a74e1bf0457 100644
--- a/drivers/gpu/drm/radeon/atombios_dp.c
+++ b/drivers/gpu/drm/radeon/atombios_dp.c
@@ -658,9 +658,7 @@ static bool radeon_dp_get_link_status(struct radeon_connector *radeon_connector,
return false;
}
- DRM_DEBUG_KMS("link status %02x %02x %02x %02x %02x %02x\n",
- link_status[0], link_status[1], link_status[2],
- link_status[3], link_status[4], link_status[5]);
+ DRM_DEBUG_KMS("link status %*ph\n", 6, link_status);
return true;
}