Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a3752184 authored by Hans Wennborg's avatar Hans Wennborg Committed by Mauro Carvalho Chehab
Browse files

[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: default avatarHans Wennborg <hans@hanshq.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 6694ba62
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;