Commit b96ec4a4 authored by Lyude Paul's avatar Lyude Paul Committed by Alex Deucher
Browse files

drm/amdgpu/dm/mst: Use ->atomic_best_encoder



We are supposed to be atomic after all. We'll need this in a moment for
the next commit.

Acked-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Reviewed-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarLyude Paul <lyude@redhat.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 2f232cf2
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -243,17 +243,17 @@ static int dm_dp_mst_get_modes(struct drm_connector *connector)
	return ret;
}

static struct drm_encoder *dm_mst_best_encoder(struct drm_connector *connector)
static struct drm_encoder *
dm_mst_atomic_best_encoder(struct drm_connector *connector,
			   struct drm_connector_state *connector_state)
{
	struct amdgpu_dm_connector *amdgpu_dm_connector = to_amdgpu_dm_connector(connector);

	return &amdgpu_dm_connector->mst_encoder->base;
	return &to_amdgpu_dm_connector(connector)->mst_encoder->base;
}

static const struct drm_connector_helper_funcs dm_dp_mst_connector_helper_funcs = {
	.get_modes = dm_dp_mst_get_modes,
	.mode_valid = amdgpu_dm_connector_mode_valid,
	.best_encoder = dm_mst_best_encoder,
	.atomic_best_encoder = dm_mst_atomic_best_encoder,
};

static void amdgpu_dm_encoder_destroy(struct drm_encoder *encoder)