aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb-frontends/bcm3510.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>2014-09-24 20:35:12 -0300
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2014-09-26 06:50:59 -0300
commit35f30f36a7e66caa0973a4db620b4245df2cf428 (patch)
tree491263d000ef2493fde37cccb97867dc9401cce7 /drivers/media/dvb-frontends/bcm3510.c
parent[media] s5p-mfc: Fix several printk warnings (diff)
downloadlinux-dev-35f30f36a7e66caa0973a4db620b4245df2cf428.tar.xz
linux-dev-35f30f36a7e66caa0973a4db620b4245df2cf428.zip
[media] dvb-frontends: use %zu instead of %zd
size_t is unsigned. Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/dvb-frontends/bcm3510.c')
-rw-r--r--drivers/media/dvb-frontends/bcm3510.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/bcm3510.c b/drivers/media/dvb-frontends/bcm3510.c
index 998d15031461..638c7aa0fb7e 100644
--- a/drivers/media/dvb-frontends/bcm3510.c
+++ b/drivers/media/dvb-frontends/bcm3510.c
@@ -639,7 +639,7 @@ static int bcm3510_download_firmware(struct dvb_frontend* fe)
err("could not load firmware (%s): %d",BCM3510_DEFAULT_FIRMWARE,ret);
return ret;
}
- deb_info("got firmware: %zd\n",fw->size);
+ deb_info("got firmware: %zu\n", fw->size);
b = fw->data;
for (i = 0; i < fw->size;) {