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

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

drm/mgag200: use helpers



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