]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
media: docs: v4l2-subdev: fix typo
authorLuca Ceresoli <luca@lucaceresoli.net>
Mon, 21 Sep 2020 20:21:31 +0000 (22:21 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Sun, 27 Sep 2020 09:30:32 +0000 (11:30 +0200)
Fix "will to" -> "will do".

Reviewed-by: Jacopo Mondi <jacopo+renesas@jmondi.org>
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Documentation/driver-api/media/v4l2-subdev.rst

index bc7e1fc40a9d20db469b5fa068640b7bf4e29c75..9a7dddd97f5a88295e37bdfb84b8edc4d1594b21 100644 (file)
@@ -191,7 +191,7 @@ but it is better and easier to use this macro:
 
        err = v4l2_subdev_call(sd, core, g_std, &norm);
 
-The macro will to the right ``NULL`` pointer checks and returns ``-ENODEV``
+The macro will do the right ``NULL`` pointer checks and returns ``-ENODEV``
 if :c:type:`sd <v4l2_subdev>` is ``NULL``, ``-ENOIOCTLCMD`` if either
 :c:type:`sd <v4l2_subdev>`->core or :c:type:`sd <v4l2_subdev>`->core->g_std is ``NULL``, or the actual result of the
 :c:type:`sd <v4l2_subdev>`->ops->core->g_std ops.