diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-26 09:08:11 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-08-27 08:44:58 -0400 |
commit | 507e190946297c34a27d9366b0661d5e506fdd03 (patch) | |
tree | cf0a66daba85624c8b3a237680b3226147fd67c6 /drivers/media/pci/solo6x10 | |
parent | 5303135c178c2f51044ddbc30037af9f030e6017 (diff) | |
download | linux-stable-507e190946297c34a27d9366b0661d5e506fdd03.tar.gz linux-stable-507e190946297c34a27d9366b0661d5e506fdd03.tar.bz2 linux-stable-507e190946297c34a27d9366b0661d5e506fdd03.zip |
media: pci: make video_device const
Make these const as they are either used during a copy operation or
passed to a const argument of the function cx88_vdev_init.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/pci/solo6x10')
-rw-r--r-- | drivers/media/pci/solo6x10/solo6x10-v4l2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/solo6x10/solo6x10-v4l2.c b/drivers/media/pci/solo6x10/solo6x10-v4l2.c index 3266fc21825f..99ffd1ed4a73 100644 --- a/drivers/media/pci/solo6x10/solo6x10-v4l2.c +++ b/drivers/media/pci/solo6x10/solo6x10-v4l2.c @@ -630,7 +630,7 @@ static const struct v4l2_ioctl_ops solo_v4l2_ioctl_ops = { .vidioc_unsubscribe_event = v4l2_event_unsubscribe, }; -static struct video_device solo_v4l2_template = { +static const struct video_device solo_v4l2_template = { .name = SOLO6X10_NAME, .fops = &solo_v4l2_fops, .ioctl_ops = &solo_v4l2_ioctl_ops, |