Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2b768468 authored by Philipp Zabel's avatar Philipp Zabel Committed by Mauro Carvalho Chehab
Browse files

[media] coda: bitstream payload is unsigned



kfifo_len is unsigned int, return it as such.

Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: default avatarKamil Debski <k.debski@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent d446ec8e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
}