mirror of
https://github.com/torvalds/linux.git
synced 2026-08-01 03:59:40 +02:00
media: staging/intel-ipu3: Constify static struct v4l2_subdev_internal_ops
The only usage of imgu_subdev_internal_ops is to assign its address to the internal_ops field in the v4l2_subdev struct, which is a pointer to const v4l2_subdev_internal_ops. Make it const to allow the compiler to put it in read-only memory. Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
566778bc1d
commit
c96651a002
|
|
@ -864,7 +864,7 @@ static int imgu_vidioc_g_meta_fmt(struct file *file, void *fh,
|
|||
|
||||
/******************** function pointers ********************/
|
||||
|
||||
static struct v4l2_subdev_internal_ops imgu_subdev_internal_ops = {
|
||||
static const struct v4l2_subdev_internal_ops imgu_subdev_internal_ops = {
|
||||
.open = imgu_subdev_open,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user