drm/cirrus: use helpers
Signed-off-by: Rob Clark <robdclark@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
fc22d96d15
commit
ef13aec454
|
@ -509,19 +509,9 @@ static struct drm_encoder *cirrus_connector_best_encoder(struct drm_connector
|
||||||
*connector)
|
*connector)
|
||||||
{
|
{
|
||||||
int enc_id = connector->encoder_ids[0];
|
int enc_id = connector->encoder_ids[0];
|
||||||
struct drm_mode_object *obj;
|
|
||||||
struct drm_encoder *encoder;
|
|
||||||
|
|
||||||
/* pick the encoder ids */
|
/* pick the encoder ids */
|
||||||
if (enc_id) {
|
if (enc_id)
|
||||||
obj =
|
return drm_encoder_find(connector->dev, enc_id);
|
||||||
drm_mode_object_find(connector->dev, enc_id,
|
|
||||||
DRM_MODE_OBJECT_ENCODER);
|
|
||||||
if (!obj)
|
|
||||||
return NULL;
|
|
||||||
encoder = obj_to_encoder(obj);
|
|
||||||
return encoder;
|
|
||||||
}
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue