mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
[media] dvb: remove 0x prefix from decimal value in printf
The returned code is 0, 1 or an error. It doesn't make sense to print it in hexadecimal. Signed-off-by: Hans Wennborg <hans@hanshq.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
6694ba62c7
commit
a375218460
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ static int mb86a16_read(struct mb86a16_state *state, u8 reg, u8 *val)
|
|||
};
|
||||
ret = i2c_transfer(state->i2c_adap, msg, 2);
|
||||
if (ret != 2) {
|
||||
dprintk(verbose, MB86A16_ERROR, 1, "read error(reg=0x%02x, ret=0x%i)",
|
||||
dprintk(verbose, MB86A16_ERROR, 1, "read error(reg=0x%02x, ret=%i)",
|
||||
reg, ret);
|
||||
|
||||
return -EREMOTEIO;
|
||||
|
|
Loading…
Reference in a new issue