summaryrefslogtreecommitdiff
path: root/drivers/media/pci/cx18/cx18-queue.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>2014-09-25 03:35:48 +0400
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2014-09-26 13:51:00 +0400
commit339f06c5d354c4c89814f11d0c3393f198b3dd00 (patch)
treee27fb1f85facd6ec8ffd304680ec71b62b683558 /drivers/media/pci/cx18/cx18-queue.c
parent35f30f36a7e66caa0973a4db620b4245df2cf428 (diff)
downloadlinux-339f06c5d354c4c89814f11d0c3393f198b3dd00.tar.xz
[media] pci drivers: use %zu instead of %zd
size_t is unsigned. Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/pci/cx18/cx18-queue.c')
-rw-r--r--drivers/media/pci/cx18/cx18-queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/cx18/cx18-queue.c b/drivers/media/pci/cx18/cx18-queue.c
index 8884537bd62f..2a247d264b87 100644
--- a/drivers/media/pci/cx18/cx18-queue.c
+++ b/drivers/media/pci/cx18/cx18-queue.c
@@ -364,7 +364,7 @@ int cx18_stream_alloc(struct cx18_stream *s)
((char __iomem *)cx->scb->cpu_mdl));
CX18_ERR("Too many buffers, cannot fit in SCB area\n");
- CX18_ERR("Max buffers = %zd\n",
+ CX18_ERR("Max buffers = %zu\n",
bufsz / sizeof(struct cx18_mdl_ent));
return -ENOMEM;
}