Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1692880 > unrolled thread

[PATCH v2 1/3] drm/bridge/synopsys: dsi: Constify funcs structures

Started byPhilippe CORNU <philippe.cornu@st.com>
First post2017-07-20 14:30 +0200
Last post2017-07-20 14:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v2 1/3] drm/bridge/synopsys: dsi: Constify funcs structures Philippe CORNU <philippe.cornu@st.com> - 2017-07-20 14:30 +0200

#1692880 — [PATCH v2 1/3] drm/bridge/synopsys: dsi: Constify funcs structures

FromPhilippe CORNU <philippe.cornu@st.com>
Date2017-07-20 14:30 +0200
Subject[PATCH v2 1/3] drm/bridge/synopsys: dsi: Constify funcs structures
Message-ID<u5iKE-7kM-63@gated-at.bofh.it>
Constify dw_mipi_dsi_bridge_funcs as these functions are not supposed
to change at runtime.

Signed-off-by: Philippe CORNU <philippe.cornu@st.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c b/drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c
index 36f5ccb..63c7a01 100644
--- a/drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c
+++ b/drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c
@@ -811,7 +811,7 @@ static int dw_mipi_dsi_bridge_attach(struct drm_bridge *bridge)
 	return drm_bridge_attach(bridge->encoder, dsi->panel_bridge, bridge);
 }
 
-static struct drm_bridge_funcs dw_mipi_dsi_bridge_funcs = {
+static const struct drm_bridge_funcs dw_mipi_dsi_bridge_funcs = {
 	.mode_set     = dw_mipi_dsi_bridge_mode_set,
 	.enable	      = dw_mipi_dsi_bridge_enable,
 	.post_disable = dw_mipi_dsi_bridge_post_disable,
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web