diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-03-15 05:10:06 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-03-24 05:31:23 -0400 |
commit | 2f73c7c582a685b3198b974cd6d964d0338f8ab5 (patch) | |
tree | d95d1dd1665bd59d09dfd7455c8f096a6fb29352 /sound/i2c | |
parent | b530a447bb588fdf43fdf4eb909e4ee1921d47ac (diff) |
[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>
Diffstat (limited to 'sound/i2c')
-rw-r--r-- | sound/i2c/other/tea575x-tuner.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/i2c/other/tea575x-tuner.c b/sound/i2c/other/tea575x-tuner.c index 738c5ad9c93f..8a36a1d9803f 100644 --- a/sound/i2c/other/tea575x-tuner.c +++ b/sound/i2c/other/tea575x-tuner.c | |||
@@ -306,7 +306,7 @@ static int vidioc_g_tuner(struct file *file, void *priv, | |||
306 | } | 306 | } |
307 | 307 | ||
308 | static int vidioc_s_tuner(struct file *file, void *priv, | 308 | static int vidioc_s_tuner(struct file *file, void *priv, |
309 | struct v4l2_tuner *v) | 309 | const struct v4l2_tuner *v) |
310 | { | 310 | { |
311 | struct snd_tea575x *tea = video_drvdata(file); | 311 | struct snd_tea575x *tea = video_drvdata(file); |
312 | u32 orig_val = tea->val; | 312 | u32 orig_val = tea->val; |