Commit 5303135c authored by Bhumika Goyal's avatar Bhumika Goyal Committed by Mauro Carvalho Chehab

media: platform: make video_device const

Make these const as they are only used during a copy operation.
Done using Coccinelle:

@match disable optional_qualifier@
identifier s;
@@
static struct video_device s = {...};

@ref@
position p;
identifier match.s;
@@
s@p

@good1@
identifier match.s;
expression list[3] es;
position ref.p;
@@
cx88_vdev_init(es,&s@p,...)

@good2@
position ref.p;
identifier match.s,f,c;
expression e;
@@
(
e = s@p
|
e = s@p.f
|
c(...,s@p.f,...)
|
c(...,s@p,...)
)

@bad depends on  !good1 && !good2@
position ref.p;
identifier match.s;
@@
s@p

@depends on forall !bad disable optional_qualifier@
identifier match.s;
@@
static
+ const
struct video_device s;
Signed-off-by: default avatarBhumika Goyal <bhumirks@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 3db4b68e
...@@ -1380,7 +1380,7 @@ static const struct v4l2_ioctl_ops viu_ioctl_ops = { ...@@ -1380,7 +1380,7 @@ static const struct v4l2_ioctl_ops viu_ioctl_ops = {
.vidioc_unsubscribe_event = v4l2_event_unsubscribe, .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
}; };
static struct video_device viu_template = { static const struct video_device viu_template = {
.name = "FSL viu", .name = "FSL viu",
.fops = &viu_fops, .fops = &viu_fops,
.minor = -1, .minor = -1,
......
...@@ -979,7 +979,7 @@ static const struct v4l2_file_operations deinterlace_fops = { ...@@ -979,7 +979,7 @@ static const struct v4l2_file_operations deinterlace_fops = {
.mmap = deinterlace_mmap, .mmap = deinterlace_mmap,
}; };
static struct video_device deinterlace_videodev = { static const struct video_device deinterlace_videodev = {
.name = MEM2MEM_NAME, .name = MEM2MEM_NAME,
.fops = &deinterlace_fops, .fops = &deinterlace_fops,
.ioctl_ops = &deinterlace_ioctl_ops, .ioctl_ops = &deinterlace_ioctl_ops,
......
...@@ -1639,7 +1639,7 @@ static const struct v4l2_file_operations mcam_v4l_fops = { ...@@ -1639,7 +1639,7 @@ static const struct v4l2_file_operations mcam_v4l_fops = {
* This template device holds all of those v4l2 methods; we * This template device holds all of those v4l2 methods; we
* clone it for specific real devices. * clone it for specific real devices.
*/ */
static struct video_device mcam_v4l_template = { static const struct video_device mcam_v4l_template = {
.name = "mcam", .name = "mcam",
.fops = &mcam_v4l_fops, .fops = &mcam_v4l_fops,
.ioctl_ops = &mcam_v4l_ioctl_ops, .ioctl_ops = &mcam_v4l_ioctl_ops,
......
...@@ -873,7 +873,7 @@ static const struct v4l2_file_operations emmaprp_fops = { ...@@ -873,7 +873,7 @@ static const struct v4l2_file_operations emmaprp_fops = {
.mmap = emmaprp_mmap, .mmap = emmaprp_mmap,
}; };
static struct video_device emmaprp_videodev = { static const struct video_device emmaprp_videodev = {
.name = MEM2MEM_NAME, .name = MEM2MEM_NAME,
.fops = &emmaprp_fops, .fops = &emmaprp_fops,
.ioctl_ops = &emmaprp_ioctl_ops, .ioctl_ops = &emmaprp_ioctl_ops,
......
...@@ -602,7 +602,7 @@ static const struct v4l2_ioctl_ops g2d_ioctl_ops = { ...@@ -602,7 +602,7 @@ static const struct v4l2_ioctl_ops g2d_ioctl_ops = {
.vidioc_cropcap = vidioc_cropcap, .vidioc_cropcap = vidioc_cropcap,
}; };
static struct video_device g2d_videodev = { static const struct video_device g2d_videodev = {
.name = G2D_NAME, .name = G2D_NAME,
.fops = &g2d_fops, .fops = &g2d_fops,
.ioctl_ops = &g2d_ioctl_ops, .ioctl_ops = &g2d_ioctl_ops,
......
...@@ -1420,7 +1420,7 @@ static const struct v4l2_ioctl_ops cal_ioctl_ops = { ...@@ -1420,7 +1420,7 @@ static const struct v4l2_ioctl_ops cal_ioctl_ops = {
.vidioc_unsubscribe_event = v4l2_event_unsubscribe, .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
}; };
static struct video_device cal_videodev = { static const struct video_device cal_videodev = {
.name = CAL_MODULE_NAME, .name = CAL_MODULE_NAME,
.fops = &cal_fops, .fops = &cal_fops,
.ioctl_ops = &cal_ioctl_ops, .ioctl_ops = &cal_ioctl_ops,
......
...@@ -2421,7 +2421,7 @@ static const struct v4l2_file_operations vpe_fops = { ...@@ -2421,7 +2421,7 @@ static const struct v4l2_file_operations vpe_fops = {
.mmap = v4l2_m2m_fop_mmap, .mmap = v4l2_m2m_fop_mmap,
}; };
static struct video_device vpe_videodev = { static const struct video_device vpe_videodev = {
.name = VPE_MODULE_NAME, .name = VPE_MODULE_NAME,
.fops = &vpe_fops, .fops = &vpe_fops,
.ioctl_ops = &vpe_ioctl_ops, .ioctl_ops = &vpe_ioctl_ops,
......
...@@ -1259,7 +1259,7 @@ static struct viafb_pm_hooks viacam_pm_hooks = { ...@@ -1259,7 +1259,7 @@ static struct viafb_pm_hooks viacam_pm_hooks = {
* Setup stuff. * Setup stuff.
*/ */
static struct video_device viacam_v4l_template = { static const struct video_device viacam_v4l_template = {
.name = "via-camera", .name = "via-camera",
.minor = -1, .minor = -1,
.tvnorms = V4L2_STD_NTSC_M, .tvnorms = V4L2_STD_NTSC_M,
......
...@@ -974,7 +974,7 @@ static const struct v4l2_file_operations vim2m_fops = { ...@@ -974,7 +974,7 @@ static const struct v4l2_file_operations vim2m_fops = {
.mmap = v4l2_m2m_fop_mmap, .mmap = v4l2_m2m_fop_mmap,
}; };
static struct video_device vim2m_videodev = { static const struct video_device vim2m_videodev = {
.name = MEM2MEM_NAME, .name = MEM2MEM_NAME,
.vfl_dir = VFL_DIR_M2M, .vfl_dir = VFL_DIR_M2M,
.fops = &vim2m_fops, .fops = &vim2m_fops,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment