Commit a628a073 authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Boris Brezillon

drm/bridge: lvds-codec: Constify the drm_bridge_funcs structure

The drm_bridge_funcs structure is never modified, make it const. Making
it read-only can improve security as the structure contains function
pointers.
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Reviewed-by: default avatarBoris Brezillon <boris.brezillon@collabora.com>
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@collabora.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200224230056.2157-1-laurent.pinchart+renesas@ideasonboard.com
parent 65c04add
...@@ -50,7 +50,7 @@ static void lvds_codec_disable(struct drm_bridge *bridge) ...@@ -50,7 +50,7 @@ static void lvds_codec_disable(struct drm_bridge *bridge)
gpiod_set_value_cansleep(lvds_codec->powerdown_gpio, 1); gpiod_set_value_cansleep(lvds_codec->powerdown_gpio, 1);
} }
static struct drm_bridge_funcs funcs = { static const struct drm_bridge_funcs funcs = {
.attach = lvds_codec_attach, .attach = lvds_codec_attach,
.enable = lvds_codec_enable, .enable = lvds_codec_enable,
.disable = lvds_codec_disable, .disable = lvds_codec_disable,
......
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