From: Wolfram Sang Date: Sun, 10 Nov 2019 14:36:07 +0000 (+0100) Subject: media: v4l2-subdev: remove wrong @cond from kdocs X-Git-Tag: v5.6-rc1~93^2~182 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=aab7b7d19d038c198d2a17748d9b2aa69a28d0dc;p=users%2Fhch%2Fblock.git media: v4l2-subdev: remove wrong @cond from kdocs v4l2_subdev_call() is unconditional, so don't mention in the docs a @cond parameter which does not exist. Signed-off-by: Wolfram Sang Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/include/media/v4l2-subdev.h b/include/media/v4l2-subdev.h index 71f1f2f0da53..761aa83a3f3c 100644 --- a/include/media/v4l2-subdev.h +++ b/include/media/v4l2-subdev.h @@ -1090,7 +1090,7 @@ extern const struct v4l2_subdev_ops v4l2_subdev_call_wrappers; * @sd: pointer to the &struct v4l2_subdev * @o: name of the element at &struct v4l2_subdev_ops that contains @f. * Each element there groups a set of callbacks functions. - * @f: callback function that will be called if @cond matches. + * @f: callback function to be called. * The callback functions are defined in groups, according to * each element at &struct v4l2_subdev_ops. * @args...: arguments for @f.