Commit 4ec14f24 authored by Sean Young's avatar Sean Young Committed by Mauro Carvalho Chehab
Browse files

media: dib7000p: incorrect format specifier detected by clang



drivers/media/dvb-frontends/dib7000p.c:918:37: warning: format specifies type 'short' but the argument has type 'u8' (aka 'unsigned char') [-Wformat]
                dprintk("SPLIT %p: %hd\n", demod, agc_split);
                                   ~~~            ^~~~~~~~~
                                   %hhu

Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent cfff5818
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -915,7 +915,7 @@ static int dib7000p_agc_startup(struct dvb_frontend *demod)

		dib7000p_restart_agc(state);

		dprintk("SPLIT %p: %hd\n", demod, agc_split);
		dprintk("SPLIT %p: %u\n", demod, agc_split);

		(*agc_state)++;
		ret = 5;