Commit 49339e2a authored by Boris Brezillon's avatar Boris Brezillon Committed by Daniel Vetter

drm: rockchip: Rely on the default ->best_encoder() behavior

All outputs have a 1:1 relationship between connectors and encoders
and the driver is relying on the atomic helpers: we can drop the custom
->best_encoder() implementations  and let the core call
drm_atomic_helper_best_encoder() for us.
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@free-electrons.com>
Acked-by: default avatarMark Yao <mark.yao@rock-chips.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1465300095-16971-11-git-send-email-boris.brezillon@free-electrons.com
Link: http://patchwork.freedesktop.org/patch/msgid/1465300095-16971-12-git-send-email-boris.brezillon@free-electrons.com
parent 15b6412b
...@@ -964,18 +964,9 @@ static enum drm_mode_status dw_mipi_dsi_mode_valid( ...@@ -964,18 +964,9 @@ static enum drm_mode_status dw_mipi_dsi_mode_valid(
return mode_status; return mode_status;
} }
static struct drm_encoder *dw_mipi_dsi_connector_best_encoder(
struct drm_connector *connector)
{
struct dw_mipi_dsi *dsi = con_to_dsi(connector);
return &dsi->encoder;
}
static struct drm_connector_helper_funcs dw_mipi_dsi_connector_helper_funcs = { static struct drm_connector_helper_funcs dw_mipi_dsi_connector_helper_funcs = {
.get_modes = dw_mipi_dsi_connector_get_modes, .get_modes = dw_mipi_dsi_connector_get_modes,
.mode_valid = dw_mipi_dsi_mode_valid, .mode_valid = dw_mipi_dsi_mode_valid,
.best_encoder = dw_mipi_dsi_connector_best_encoder,
}; };
static enum drm_connector_status static enum drm_connector_status
......
...@@ -579,14 +579,6 @@ inno_hdmi_connector_mode_valid(struct drm_connector *connector, ...@@ -579,14 +579,6 @@ inno_hdmi_connector_mode_valid(struct drm_connector *connector,
return MODE_OK; return MODE_OK;
} }
static struct drm_encoder *
inno_hdmi_connector_best_encoder(struct drm_connector *connector)
{
struct inno_hdmi *hdmi = to_inno_hdmi(connector);
return &hdmi->encoder;
}
static int static int
inno_hdmi_probe_single_connector_modes(struct drm_connector *connector, inno_hdmi_probe_single_connector_modes(struct drm_connector *connector,
uint32_t maxX, uint32_t maxY) uint32_t maxX, uint32_t maxY)
...@@ -613,7 +605,6 @@ static struct drm_connector_funcs inno_hdmi_connector_funcs = { ...@@ -613,7 +605,6 @@ static struct drm_connector_funcs inno_hdmi_connector_funcs = {
static struct drm_connector_helper_funcs inno_hdmi_connector_helper_funcs = { static struct drm_connector_helper_funcs inno_hdmi_connector_helper_funcs = {
.get_modes = inno_hdmi_connector_get_modes, .get_modes = inno_hdmi_connector_get_modes,
.mode_valid = inno_hdmi_connector_mode_valid, .mode_valid = inno_hdmi_connector_mode_valid,
.best_encoder = inno_hdmi_connector_best_encoder,
}; };
static int inno_hdmi_register(struct drm_device *drm, struct inno_hdmi *hdmi) static int inno_hdmi_register(struct drm_device *drm, struct inno_hdmi *hdmi)
......
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