diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-26 11:43:43 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-08-27 15:47:20 +0300 |
commit | 96cc6956c6f097bae8f143f700a2795959b20a44 (patch) | |
tree | ed8025f85ce4168a43e152e35e2dbbb7c0d3baaf /drivers/media/radio/radio-tea5764.c | |
parent | 47bdf7c6d607335f79deead3aba481c3baf04971 (diff) | |
download | linux-96cc6956c6f097bae8f143f700a2795959b20a44.tar.xz |
media: radio: make video_device const
Make these const as they are only used in a copy operation.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/radio/radio-tea5764.c')
-rw-r--r-- | drivers/media/radio/radio-tea5764.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/radio/radio-tea5764.c b/drivers/media/radio/radio-tea5764.c index 9db8331a0c75..bc7e69e7e32e 100644 --- a/drivers/media/radio/radio-tea5764.c +++ b/drivers/media/radio/radio-tea5764.c @@ -414,7 +414,7 @@ static const struct v4l2_ioctl_ops tea5764_ioctl_ops = { }; /* V4L2 interface */ -static struct video_device tea5764_radio_template = { +static const struct video_device tea5764_radio_template = { .name = "TEA5764 FM-Radio", .fops = &tea5764_fops, .ioctl_ops = &tea5764_ioctl_ops, |