From: Mauro Carvalho Chehab Date: Tue, 7 Aug 2018 12:16:09 +0000 (-0400) Subject: media: xc4000: get rid of uneeded casts X-Git-Tag: v5.15~8227^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8218840f76a525f014f404b5e97d9523e327f4b0;p=platform%2Fkernel%2Flinux-starfive.git media: xc4000: get rid of uneeded casts Instead of doing casts, use %zd to print sizes, in order to make smatch happier: drivers/media/tuners/xc4000.c:818 xc4000_fwupload() warn: argument 4 to %d specifier is cast from pointer Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/tuners/xc4000.c b/drivers/media/tuners/xc4000.c index 76b3f37..eb6d65d 100644 --- a/drivers/media/tuners/xc4000.c +++ b/drivers/media/tuners/xc4000.c @@ -815,9 +815,9 @@ static int xc4000_fwupload(struct dvb_frontend *fe) p += sizeof(size); if (!size || size > endp - p) { - printk(KERN_ERR "Firmware type (%x), id %llx is corrupted (size=%d, expected %d)\n", + printk(KERN_ERR "Firmware type (%x), id %llx is corrupted (size=%zd, expected %d)\n", type, (unsigned long long)id, - (unsigned)(endp - p), size); + endp - p, size); goto corrupt; }