diff options
author | Julia Lawall <Julia.Lawall@inria.fr> | 2020-01-01 08:43:24 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-01-23 15:48:05 +0100 |
commit | a03003c528e6996b90de5b60ee2864565a917186 (patch) | |
tree | e08af03d61a6eedfef0bc4956ed176941d583a59 | |
parent | 29951078bb5be1f2105c2841a4ac119f1b81531b (diff) | |
download | blackbird-op-linux-a03003c528e6996b90de5b60ee2864565a917186.tar.gz blackbird-op-linux-a03003c528e6996b90de5b60ee2864565a917186.zip |
media: mt9v111: constify copied structure
The mt9v111_def_fmt structure is only copied into another structure,
so make it const.
The opportunity for this change was found using Coccinelle.
Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Acked-by: Jacopo Mondi <jacopo+renesas@jmondi.org>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
-rw-r--r-- | drivers/media/i2c/mt9v111.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/mt9v111.c b/drivers/media/i2c/mt9v111.c index bb41bea950ac..61ae6a0d5679 100644 --- a/drivers/media/i2c/mt9v111.c +++ b/drivers/media/i2c/mt9v111.c @@ -103,7 +103,7 @@ #define MT9V111_MAX_CLKIN 27000000 /* The default sensor configuration at startup time. */ -static struct v4l2_mbus_framefmt mt9v111_def_fmt = { +static const struct v4l2_mbus_framefmt mt9v111_def_fmt = { .width = 640, .height = 480, .code = MEDIA_BUS_FMT_UYVY8_2X8, |