Commit 4141e720 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Mauro Carvalho Chehab

[media] dvb: frontends: use %*ph to dump small buffers

Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent c6480ccc
...@@ -389,8 +389,7 @@ int cxd2820r_read_status_t(struct dvb_frontend *fe, fe_status_t *status) ...@@ -389,8 +389,7 @@ int cxd2820r_read_status_t(struct dvb_frontend *fe, fe_status_t *status)
} }
} }
dbg("%s: lock=%02x %02x %02x %02x", __func__, dbg("%s: lock=%*ph", __func__, 4, buf);
buf[0], buf[1], buf[2], buf[3]);
return ret; return ret;
error: error:
......
...@@ -331,7 +331,7 @@ static int nxt200x_writetuner (struct nxt200x_state* state, u8* data) ...@@ -331,7 +331,7 @@ static int nxt200x_writetuner (struct nxt200x_state* state, u8* data)
dprintk("%s\n", __func__); dprintk("%s\n", __func__);
dprintk("Tuner Bytes: %02X %02X %02X %02X\n", data[1], data[2], data[3], data[4]); dprintk("Tuner Bytes: %*ph\n", 4, data + 1);
/* if NXT2004, write directly to tuner. if NXT2002, write through NXT chip. /* if NXT2004, write directly to tuner. if NXT2002, write through NXT chip.
* direct write is required for Philips TUV1236D and ALPS TDHU2 */ * direct write is required for Philips TUV1236D and ALPS TDHU2 */
...@@ -1161,8 +1161,7 @@ struct dvb_frontend* nxt200x_attach(const struct nxt200x_config* config, ...@@ -1161,8 +1161,7 @@ struct dvb_frontend* nxt200x_attach(const struct nxt200x_config* config,
/* read card id */ /* read card id */
nxt200x_readbytes(state, 0x00, buf, 5); nxt200x_readbytes(state, 0x00, buf, 5);
dprintk("NXT info: %02X %02X %02X %02X %02X\n", dprintk("NXT info: %*ph\n", 5, buf);
buf[0], buf[1], buf[2], buf[3], buf[4]);
/* set demod chip */ /* set demod chip */
switch (buf[0]) { switch (buf[0]) {
...@@ -1201,8 +1200,7 @@ struct dvb_frontend* nxt200x_attach(const struct nxt200x_config* config, ...@@ -1201,8 +1200,7 @@ struct dvb_frontend* nxt200x_attach(const struct nxt200x_config* config,
error: error:
kfree(state); kfree(state);
printk("Unknown/Unsupported NXT chip: %02X %02X %02X %02X %02X\n", pr_err("Unknown/Unsupported NXT chip: %*ph\n", 5, buf);
buf[0], buf[1], buf[2], buf[3], buf[4]);
return NULL; return NULL;
} }
......
...@@ -392,7 +392,7 @@ static int rtl2830_get_frontend(struct dvb_frontend *fe) ...@@ -392,7 +392,7 @@ static int rtl2830_get_frontend(struct dvb_frontend *fe)
if (ret) if (ret)
goto err; goto err;
dbg("%s: TPS=%02x %02x %02x", __func__, buf[0], buf[1], buf[2]); dbg("%s: TPS=%*ph", __func__, 3, buf);
switch ((buf[0] >> 2) & 3) { switch ((buf[0] >> 2) & 3) {
case 0: case 0:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment