summaryrefslogtreecommitdiffstats
path: root/Documentation/media/uapi/v4l/extended-controls.rst
diff options
context:
space:
mode:
authorLuca Ceresoli <luca@lucaceresoli.net>2019-06-13 10:18:20 -0400
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>2019-06-21 17:02:44 -0400
commite050f55207c547f78cd65758f148dd1b4404f133 (patch)
treea5ae1b7e2e56ad1c23fe73cc5413393d26d44124 /Documentation/media/uapi/v4l/extended-controls.rst
parent7239682847b5a7d2633f39ddea1c0c11a69d5fd3 (diff)
downloadlinux-0-day-e050f55207c547f78cd65758f148dd1b4404f133.tar.gz
linux-0-day-e050f55207c547f78cd65758f148dd1b4404f133.tar.xz
media: docs: v4l2-controls: fix indentation
Fix indentation in example C code. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'Documentation/media/uapi/v4l/extended-controls.rst')
-rw-r--r--Documentation/media/uapi/v4l/extended-controls.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/media/uapi/v4l/extended-controls.rst b/Documentation/media/uapi/v4l/extended-controls.rst
index 1323afcf2b7d0..0e9787072a417 100644
--- a/Documentation/media/uapi/v4l/extended-controls.rst
+++ b/Documentation/media/uapi/v4l/extended-controls.rst
@@ -142,7 +142,7 @@ control class is found:
while (0 == ioctl(fd, VIDIOC_QUERYCTRL, &qctrl)) {
if (V4L2_CTRL_ID2CLASS(qctrl.id) != V4L2_CTRL_CLASS_MPEG)
break;
- /* ... */
+ /* ... */
qctrl.id |= V4L2_CTRL_FLAG_NEXT_CTRL;
}