From: Dan Carpenter Date: Fri, 22 Feb 2019 06:37:02 +0000 (-0500) Subject: media: cx18: update *pos correctly in cx18_read_pos() X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=7afb0df554292dca7568446f619965fb8153085d;p=openwrt%2Fstaging%2Fblogic.git media: cx18: update *pos correctly in cx18_read_pos() We should be updating *pos. The current code is a no-op. Fixes: 1c1e45d17b66 ("V4L/DVB (7786): cx18: new driver for the Conexant CX23418 MPEG encoder chip") Signed-off-by: Dan Carpenter Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/pci/cx18/cx18-fileops.c b/drivers/media/pci/cx18/cx18-fileops.c index f778965a2eb8..59e78fb17575 100644 --- a/drivers/media/pci/cx18/cx18-fileops.c +++ b/drivers/media/pci/cx18/cx18-fileops.c @@ -484,7 +484,7 @@ static ssize_t cx18_read_pos(struct cx18_stream *s, char __user *ubuf, CX18_DEBUG_HI_FILE("read %zd from %s, got %zd\n", count, s->name, rc); if (rc > 0) - pos += rc; + *pos += rc; return rc; }