summaryrefslogtreecommitdiffstats
path: root/drivers/media/platform
diff options
context:
space:
mode:
authorPhilipp Zabel2015-03-24 18:30:49 +0100
committerMauro Carvalho Chehab2015-04-10 15:04:56 +0200
commit2b7684683d4b6e41717b9d1354d4080fdee970fc (patch)
tree06dc0907cde67d8db3250987cf27210fb038a9ea /drivers/media/platform
parent[media] coda: fix double call to debugfs_remove (diff)
downloadkernel-qcow2-linux-2b7684683d4b6e41717b9d1354d4080fdee970fc.tar.gz
kernel-qcow2-linux-2b7684683d4b6e41717b9d1354d4080fdee970fc.tar.xz
kernel-qcow2-linux-2b7684683d4b6e41717b9d1354d4080fdee970fc.zip
[media] coda: bitstream payload is unsigned
kfifo_len is unsigned int, return it as such. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Kamil Debski <k.debski@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/platform')
-rw-r--r--drivers/media/platform/coda/coda.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/coda/coda.h b/drivers/media/platform/coda/coda.h
index 0c35cd5032ff..499049f3896b 100644
--- a/drivers/media/platform/coda/coda.h
+++ b/drivers/media/platform/coda/coda.h
@@ -284,7 +284,7 @@ const char *coda_product_name(int product);
int coda_check_firmware(struct coda_dev *dev);
-static inline int coda_get_bitstream_payload(struct coda_ctx *ctx)
+static inline unsigned int coda_get_bitstream_payload(struct coda_ctx *ctx)
{
return kfifo_len(&ctx->bitstream_fifo);
}