diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2012-08-07 18:56:35 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-08-13 16:42:24 -0300 |
commit | 1d16e6d3965bff8d96995132a3b6beab7841e842 (patch) | |
tree | 00280f3630569e42bf35cd25390f41eb76b64095 /drivers/media/dvb/dvb-usb-v2/af9015.c | |
parent | 6f28f75a6df713559e675fbfd21ab1f7fbe8a20f (diff) | |
download | blackbird-op-linux-1d16e6d3965bff8d96995132a3b6beab7841e842.tar.gz blackbird-op-linux-1d16e6d3965bff8d96995132a3b6beab7841e842.zip |
[media] dvb-usb: use %*ph to dump small buffers
[crope@iki.fi: fix trivial merge conflict]
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/dvb-usb-v2/af9015.c')
-rw-r--r-- | drivers/media/dvb/dvb-usb-v2/af9015.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/dvb/dvb-usb-v2/af9015.c b/drivers/media/dvb/dvb-usb-v2/af9015.c index 10363f6b5234..e77429b37a7d 100644 --- a/drivers/media/dvb/dvb-usb-v2/af9015.c +++ b/drivers/media/dvb/dvb-usb-v2/af9015.c @@ -1199,8 +1199,7 @@ static int af9015_rc_query(struct dvb_usb_device *d) /* Only process key if canary killed */ if (buf[16] != 0xff && buf[0] != 0x01) { - deb_rc("%s: key pressed %02x %02x %02x %02x\n", __func__, - buf[12], buf[13], buf[14], buf[15]); + deb_rc("%s: key pressed %*ph\n", __func__, 4, buf + 12); /* Reset the canary */ ret = af9015_write_reg(d, 0x98e9, 0xff); |