diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2012-09-05 16:04:19 +0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-09-13 05:28:30 +0400 |
commit | 9a6a4b4757175271bc3a289fcb5c69e897039379 (patch) | |
tree | 884ee5d857bfbf08b32258307be7d43f8cc76179 /drivers/gpu/drm/nouveau/nouveau_dp.c | |
parent | 14f77fdd58773245a0eae4243c039a420a52c820 (diff) | |
download | linux-9a6a4b4757175271bc3a289fcb5c69e897039379.tar.xz |
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/nouveau/nouveau_dp.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_dp.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_dp.c b/drivers/gpu/drm/nouveau/nouveau_dp.c index 7e289d2ad8e4..e754aa32edf1 100644 --- a/drivers/gpu/drm/nouveau/nouveau_dp.c +++ b/drivers/gpu/drm/nouveau/nouveau_dp.c @@ -289,9 +289,7 @@ dp_link_train_update(struct drm_device *dev, struct dp_state *dp, u32 delay) if (ret) return ret; - NV_DEBUG_KMS(dev, "status %02x %02x %02x %02x %02x %02x\n", - dp->stat[0], dp->stat[1], dp->stat[2], dp->stat[3], - dp->stat[4], dp->stat[5]); + NV_DEBUG_KMS(dev, "status %*ph\n", 6, dp->stat); return 0; } |