[media] v4l2: add const to argument of write-only s_tuner ioctl
This ioctl is defined as IOW, so pass the argument as const. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Alexey Klimov <klimov.linux@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
b530a447bb
commit
2f73c7c582
@@ -194,7 +194,7 @@ struct v4l2_subdev_tuner_ops {
|
||||
int (*s_frequency)(struct v4l2_subdev *sd, const struct v4l2_frequency *freq);
|
||||
int (*g_frequency)(struct v4l2_subdev *sd, struct v4l2_frequency *freq);
|
||||
int (*g_tuner)(struct v4l2_subdev *sd, struct v4l2_tuner *vt);
|
||||
int (*s_tuner)(struct v4l2_subdev *sd, struct v4l2_tuner *vt);
|
||||
int (*s_tuner)(struct v4l2_subdev *sd, const struct v4l2_tuner *vt);
|
||||
int (*g_modulator)(struct v4l2_subdev *sd, struct v4l2_modulator *vm);
|
||||
int (*s_modulator)(struct v4l2_subdev *sd, const struct v4l2_modulator *vm);
|
||||
int (*s_type_addr)(struct v4l2_subdev *sd, struct tuner_setup *type);
|
||||
|
Reference in New Issue
Block a user