diff options
| author | Haneen Mohammed <[email protected]> | 2017-09-27 18:23:17 +0000 |
|---|---|---|
| committer | Sean Paul <[email protected]> | 2017-09-27 20:01:56 +0000 |
| commit | 7f909d9c74f3894ba8bca426ead8ccbe7282d950 (patch) | |
| tree | cb181bb8e9fcd3f5252e6a74d8dfa23d08e50bca /drivers/gpu/drm/rockchip/cdn-dp-core.c | |
| parent | drm/vc4: Set up the DSI host at pdev probe time, not component bind. (diff) | |
| download | kernel-7f909d9c74f3894ba8bca426ead8ccbe7282d950.tar.gz kernel-7f909d9c74f3894ba8bca426ead8ccbe7282d950.zip | |
drm/rockchip: Rely on the default best_encoder() behavior
Since the output has 1:1 relationship between connectors and encoders,
and the driver is relying on the atomic helpers, remove the custom
best_encoder() and let the core call drm_atomic_helper_best_encoder().
Signed-off-by: Haneen Mohammed <[email protected]>
Signed-off-by: Sean Paul <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/20170927182317.GA8249@Haneen
Diffstat (limited to 'drivers/gpu/drm/rockchip/cdn-dp-core.c')
| -rw-r--r-- | drivers/gpu/drm/rockchip/cdn-dp-core.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/gpu/drm/rockchip/cdn-dp-core.c b/drivers/gpu/drm/rockchip/cdn-dp-core.c index a57da051f516..275844d0d0ec 100644 --- a/drivers/gpu/drm/rockchip/cdn-dp-core.c +++ b/drivers/gpu/drm/rockchip/cdn-dp-core.c @@ -287,14 +287,6 @@ static int cdn_dp_connector_get_modes(struct drm_connector *connector) return ret; } -static struct drm_encoder * -cdn_dp_connector_best_encoder(struct drm_connector *connector) -{ - struct cdn_dp_device *dp = connector_to_dp(connector); - - return &dp->encoder; -} - static int cdn_dp_connector_mode_valid(struct drm_connector *connector, struct drm_display_mode *mode) { @@ -346,7 +338,6 @@ static int cdn_dp_connector_mode_valid(struct drm_connector *connector, static struct drm_connector_helper_funcs cdn_dp_connector_helper_funcs = { .get_modes = cdn_dp_connector_get_modes, - .best_encoder = cdn_dp_connector_best_encoder, .mode_valid = cdn_dp_connector_mode_valid, }; |
