diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-03-19 03:09:26 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-03-24 05:25:34 -0400 |
commit | b530a447bb588fdf43fdf4eb909e4ee1921d47ac (patch) | |
tree | 8c9f6abb0f0c07ceea984a87fd80e9e65e7d483b /drivers/media/radio/radio-tea5777.c | |
parent | 69aa6f4ec669b9121057cc9e32cb10b5f744f6d6 (diff) |
[media] v4l2: add const to argument of write-only s_frequency ioctl
This ioctl is defined as IOW, so pass the argument as const.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/radio/radio-tea5777.c')
-rw-r--r-- | drivers/media/radio/radio-tea5777.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/radio/radio-tea5777.c b/drivers/media/radio/radio-tea5777.c index 4b5190d4fea5..fcd7c195e0c5 100644 --- a/drivers/media/radio/radio-tea5777.c +++ b/drivers/media/radio/radio-tea5777.c | |||
@@ -368,7 +368,7 @@ static int vidioc_g_frequency(struct file *file, void *priv, | |||
368 | } | 368 | } |
369 | 369 | ||
370 | static int vidioc_s_frequency(struct file *file, void *priv, | 370 | static int vidioc_s_frequency(struct file *file, void *priv, |
371 | struct v4l2_frequency *f) | 371 | const struct v4l2_frequency *f) |
372 | { | 372 | { |
373 | struct radio_tea5777 *tea = video_drvdata(file); | 373 | struct radio_tea5777 *tea = video_drvdata(file); |
374 | 374 | ||