aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/userspace-api
diff options
context:
space:
mode:
authorDaniel Lundberg Pedersen <dlp@qtec.com>2022-01-12 13:28:09 +0100
committerMauro Carvalho Chehab <mchehab@kernel.org>2022-01-28 13:16:46 +0100
commitdb8397262ce61a3ec642cf74d86c3e1dc32850ad (patch)
tree02040f5d502851bc1e4eb0837bb68c8d1374e517 /Documentation/userspace-api
parentmedia: coda: Fix missing put_device() call in coda_get_vdoa_data (diff)
downloadlinux-dev-db8397262ce61a3ec642cf74d86c3e1dc32850ad.tar.xz
linux-dev-db8397262ce61a3ec642cf74d86c3e1dc32850ad.zip
media: docs: v4l2grab.c.rst: change unintended assignment
Example should be comparing errno to EINTR instead of doing assignment. Signed-off-by: Daniel Lundberg Pedersen <dlp@qtec.com> Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'Documentation/userspace-api')
-rw-r--r--Documentation/userspace-api/media/v4l/v4l2grab.c.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/userspace-api/media/v4l/v4l2grab.c.rst b/Documentation/userspace-api/media/v4l/v4l2grab.c.rst
index b38f661da733..1a55e3617ea8 100644
--- a/Documentation/userspace-api/media/v4l/v4l2grab.c.rst
+++ b/Documentation/userspace-api/media/v4l/v4l2grab.c.rst
@@ -134,7 +134,7 @@ file: media/v4l/v4l2grab.c
tv.tv_usec = 0;
r = select(fd + 1, &fds, NULL, NULL, &tv);
- } while ((r == -1 && (errno = EINTR)));
+ } while ((r == -1 && (errno == EINTR)));
if (r == -1) {
perror("select");
return errno;