Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 70e26260 authored by Rob Clark's avatar Rob Clark Committed by Dave Airlie
Browse files

drm/ast: use helpers



Signed-off-by: default avatarRob Clark <robdclark@gmail.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 62eb3e20
Loading
Loading
Loading
Loading
+2 −10
Original line number Diff line number Diff line
@@ -667,17 +667,9 @@ static void ast_encoder_destroy(struct drm_encoder *encoder)
static struct drm_encoder *ast_best_single_encoder(struct drm_connector *connector)
{
	int enc_id = connector->encoder_ids[0];
	struct drm_mode_object *obj;
	struct drm_encoder *encoder;

	/* pick the encoder ids */
	if (enc_id) {
		obj = drm_mode_object_find(connector->dev, enc_id, DRM_MODE_OBJECT_ENCODER);
		if (!obj)
			return NULL;
		encoder = obj_to_encoder(obj);
		return encoder;
	}
	if (enc_id)
		return drm_encoder_find(connector->dev, enc_id);
	return NULL;
}