|
@@ -242,7 +242,7 @@ static struct drm_encoder *ptn3460_best_encoder(struct drm_connector *connector)
|
|
|
return ptn_bridge->bridge.encoder;
|
|
|
}
|
|
|
|
|
|
-static struct drm_connector_helper_funcs ptn3460_connector_helper_funcs = {
|
|
|
+static const struct drm_connector_helper_funcs ptn3460_connector_helper_funcs = {
|
|
|
.get_modes = ptn3460_get_modes,
|
|
|
.best_encoder = ptn3460_best_encoder,
|
|
|
};
|
|
@@ -258,7 +258,7 @@ static void ptn3460_connector_destroy(struct drm_connector *connector)
|
|
|
drm_connector_cleanup(connector);
|
|
|
}
|
|
|
|
|
|
-static struct drm_connector_funcs ptn3460_connector_funcs = {
|
|
|
+static const struct drm_connector_funcs ptn3460_connector_funcs = {
|
|
|
.dpms = drm_atomic_helper_connector_dpms,
|
|
|
.fill_modes = drm_helper_probe_single_connector_modes,
|
|
|
.detect = ptn3460_detect,
|
|
@@ -299,7 +299,7 @@ static int ptn3460_bridge_attach(struct drm_bridge *bridge)
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
-static struct drm_bridge_funcs ptn3460_bridge_funcs = {
|
|
|
+static const struct drm_bridge_funcs ptn3460_bridge_funcs = {
|
|
|
.pre_enable = ptn3460_pre_enable,
|
|
|
.enable = ptn3460_enable,
|
|
|
.disable = ptn3460_disable,
|