aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/bridge/dw-hdmi.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/gpu/drm/bridge/dw-hdmi.c b/drivers/gpu/drm/bridge/dw-hdmi.c
index 9795b72472ba..c9d941283d30 100644
--- a/drivers/gpu/drm/bridge/dw-hdmi.c
+++ b/drivers/gpu/drm/bridge/dw-hdmi.c
@@ -1413,11 +1413,6 @@ static void dw_hdmi_bridge_enable(struct drm_bridge *bridge)
1413 mutex_unlock(&hdmi->mutex); 1413 mutex_unlock(&hdmi->mutex);
1414} 1414}
1415 1415
1416static void dw_hdmi_bridge_nop(struct drm_bridge *bridge)
1417{
1418 /* do nothing */
1419}
1420
1421static enum drm_connector_status 1416static enum drm_connector_status
1422dw_hdmi_connector_detect(struct drm_connector *connector, bool force) 1417dw_hdmi_connector_detect(struct drm_connector *connector, bool force)
1423{ 1418{
@@ -1536,8 +1531,6 @@ static const struct drm_connector_helper_funcs dw_hdmi_connector_helper_funcs =
1536static const struct drm_bridge_funcs dw_hdmi_bridge_funcs = { 1531static const struct drm_bridge_funcs dw_hdmi_bridge_funcs = {
1537 .enable = dw_hdmi_bridge_enable, 1532 .enable = dw_hdmi_bridge_enable,
1538 .disable = dw_hdmi_bridge_disable, 1533 .disable = dw_hdmi_bridge_disable,
1539 .pre_enable = dw_hdmi_bridge_nop,
1540 .post_disable = dw_hdmi_bridge_nop,
1541 .mode_set = dw_hdmi_bridge_mode_set, 1534 .mode_set = dw_hdmi_bridge_mode_set,
1542}; 1535};
1543 1536