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

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

drm/cirrus: use helpers



Signed-off-by: default avatarRob Clark <robdclark@gmail.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent fc22d96d
Loading
Loading
Loading
Loading
+2 −12
Original line number Diff line number Diff line
@@ -509,19 +509,9 @@ static struct drm_encoder *cirrus_connector_best_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;
}