mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
media: exynos4-is: constify video_subdev structures
The v4l2_subdev_ops structures are only passed as the second argument of v4l2_subdev_init, which is const, so the v4l2_subdev_ops structures can be const as well. Done with the help of Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
ebf7a6488e
commit
a3b215ea60
@ -433,7 +433,7 @@ static const struct v4l2_subdev_core_ops fimc_is_core_ops = {
|
||||
.s_power = fimc_isp_subdev_s_power,
|
||||
};
|
||||
|
||||
static struct v4l2_subdev_ops fimc_is_subdev_ops = {
|
||||
static const struct v4l2_subdev_ops fimc_is_subdev_ops = {
|
||||
.core = &fimc_is_core_ops,
|
||||
.video = &fimc_is_subdev_video_ops,
|
||||
.pad = &fimc_is_subdev_pad_ops,
|
||||
|
@ -1361,7 +1361,7 @@ static const struct v4l2_subdev_core_ops fimc_lite_core_ops = {
|
||||
.log_status = fimc_lite_log_status,
|
||||
};
|
||||
|
||||
static struct v4l2_subdev_ops fimc_lite_subdev_ops = {
|
||||
static const struct v4l2_subdev_ops fimc_lite_subdev_ops = {
|
||||
.core = &fimc_lite_core_ops,
|
||||
.video = &fimc_lite_subdev_video_ops,
|
||||
.pad = &fimc_lite_subdev_pad_ops,
|
||||
|
Loading…
Reference in New Issue
Block a user