diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-09-25 01:35:48 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-09-26 11:51:00 +0200 |
commit | 339f06c5d354c4c89814f11d0c3393f198b3dd00 (patch) | |
tree | e27fb1f85facd6ec8ffd304680ec71b62b683558 /drivers/media/pci/cx18/cx18-queue.c | |
parent | [media] dvb-frontends: use %zu instead of %zd (diff) | |
download | linux-339f06c5d354c4c89814f11d0c3393f198b3dd00.tar.xz linux-339f06c5d354c4c89814f11d0c3393f198b3dd00.zip |
[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.c | 2 |
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; } |