[media] v4l2-ctrls.h: Fix some c:type references

Now that the uAPI is using c:type, let's use it here too.

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
Mauro Carvalho Chehab 2016-08-29 19:29:58 -03:00
parent ffa0441edc
commit f8441a4334

View File

@ -973,9 +973,9 @@ extern const struct v4l2_subscribed_event_ops v4l2_ctrl_sub_ev_ops;
* v4l2_ctrl_replace - Function to be used as a callback to * v4l2_ctrl_replace - Function to be used as a callback to
* &struct v4l2_subscribed_event_ops replace\(\) * &struct v4l2_subscribed_event_ops replace\(\)
* *
* @old: pointer to :ref:`struct v4l2_event <v4l2-event>` with the reported * @old: pointer to struct &v4l2_event with the reported
* event; * event;
* @new: pointer to :ref:`struct v4l2_event <v4l2-event>` with the modified * @new: pointer to struct &v4l2_event with the modified
* event; * event;
*/ */
void v4l2_ctrl_replace(struct v4l2_event *old, const struct v4l2_event *new); void v4l2_ctrl_replace(struct v4l2_event *old, const struct v4l2_event *new);
@ -984,9 +984,9 @@ void v4l2_ctrl_replace(struct v4l2_event *old, const struct v4l2_event *new);
* v4l2_ctrl_merge - Function to be used as a callback to * v4l2_ctrl_merge - Function to be used as a callback to
* &struct v4l2_subscribed_event_ops merge(\) * &struct v4l2_subscribed_event_ops merge(\)
* *
* @old: pointer to :ref:`struct v4l2_event <v4l2-event>` with the reported * @old: pointer to struct &v4l2_event with the reported
* event; * event;
* @new: pointer to :ref:`struct v4l2_event <v4l2-event>` with the merged * @new: pointer to struct &v4l2_event with the merged
* event; * event;
*/ */
void v4l2_ctrl_merge(const struct v4l2_event *old, struct v4l2_event *new); void v4l2_ctrl_merge(const struct v4l2_event *old, struct v4l2_event *new);