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: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:

کامیت شده توسط
Mauro Carvalho Chehab

والد
3db4b68e46
کامیت
5303135c17
@@ -1259,7 +1259,7 @@ static struct viafb_pm_hooks viacam_pm_hooks = {
|
||||
* Setup stuff.
|
||||
*/
|
||||
|
||||
static struct video_device viacam_v4l_template = {
|
||||
static const struct video_device viacam_v4l_template = {
|
||||
.name = "via-camera",
|
||||
.minor = -1,
|
||||
.tvnorms = V4L2_STD_NTSC_M,
|
||||
|
مرجع در شماره جدید
Block a user