aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/usb/dvb-usb/dtt200u.c
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2012-09-26 09:55:14 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-10-06 12:25:49 -0300
commit5bdb7872cdadcd630dd2129633e1a3f8aeac69f8 (patch)
tree513a95ae6958e5bb326ff8c34dba098c900c2afb /drivers/media/usb/dvb-usb/dtt200u.c
parent[media] uvc: Add return code check at vb2_queue_init() (diff)
downloadlinux-dev-5bdb7872cdadcd630dd2129633e1a3f8aeac69f8.tar.xz
linux-dev-5bdb7872cdadcd630dd2129633e1a3f8aeac69f8.zip
[media] dvb-usb: print small buffers via %*ph
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/usb/dvb-usb/dtt200u.c')
-rw-r--r--drivers/media/usb/dvb-usb/dtt200u.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/dvb-usb/dtt200u.c b/drivers/media/usb/dvb-usb/dtt200u.c
index 66f205c112b2..c357fb3b0a88 100644
--- a/drivers/media/usb/dvb-usb/dtt200u.c
+++ b/drivers/media/usb/dvb-usb/dtt200u.c
@@ -84,7 +84,7 @@ static int dtt200u_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
dvb_usb_generic_rw(d,&cmd,1,key,5,0);
dvb_usb_nec_rc_key_to_event(d,key,event,state);
if (key[0] != 0)
- deb_info("key: %x %x %x %x %x\n",key[0],key[1],key[2],key[3],key[4]);
+ deb_info("key: %*ph\n", 5, key);
return 0;
}