Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 330815
b: refs/heads/master
c: 4141e72
h: refs/heads/master
i:
  330813: efb6916
  330811: 23ea6e7
  330807: b875764
  330799: fdbfe98
  330783: 7976e39
  330751: dbf7d58
v: v3
  • Loading branch information
Andy Shevchenko authored and Mauro Carvalho Chehab committed Aug 13, 2012
1 parent 7c278f4 commit 7f194e7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c6480cccdbaf1e9f3d1489c0530f011543cca90b
refs/heads/master: 4141e720684a59b08b31c056dbbaebe911874edb
3 changes: 1 addition & 2 deletions trunk/drivers/media/dvb/frontends/cxd2820r_t.c
Original file line number Diff line number Diff line change
Expand Up @@ -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__,
buf[0], buf[1], buf[2], buf[3]);
dbg("%s: lock=%*ph", __func__, 4, buf);

return ret;
error:
Expand Down
8 changes: 3 additions & 5 deletions trunk/drivers/media/dvb/frontends/nxt200x.c
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ static int nxt200x_writetuner (struct nxt200x_state* state, u8* data)

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.
* direct write is required for Philips TUV1236D and ALPS TDHU2 */
Expand Down Expand Up @@ -1161,8 +1161,7 @@ struct dvb_frontend* nxt200x_attach(const struct nxt200x_config* config,

/* read card id */
nxt200x_readbytes(state, 0x00, buf, 5);
dprintk("NXT info: %02X %02X %02X %02X %02X\n",
buf[0], buf[1], buf[2], buf[3], buf[4]);
dprintk("NXT info: %*ph\n", 5, buf);

/* set demod chip */
switch (buf[0]) {
Expand Down Expand Up @@ -1201,8 +1200,7 @@ struct dvb_frontend* nxt200x_attach(const struct nxt200x_config* config,

error:
kfree(state);
printk("Unknown/Unsupported NXT chip: %02X %02X %02X %02X %02X\n",
buf[0], buf[1], buf[2], buf[3], buf[4]);
pr_err("Unknown/Unsupported NXT chip: %*ph\n", 5, buf);
return NULL;
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/dvb/frontends/rtl2830.c
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ static int rtl2830_get_frontend(struct dvb_frontend *fe)
if (ret)
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) {
case 0:
Expand Down

0 comments on commit 7f194e7

Please sign in to comment.