summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/udl
diff options
context:
space:
mode:
authorRob Clark <robdclark@gmail.com>2014-07-18 07:30:01 +0400
committerDave Airlie <airlied@redhat.com>2014-07-18 08:24:49 +0400
commitbf02d87fa458a665c176eaefd58d29bc615a8875 (patch)
tree294e93720bf2349451d91fc4a3673df1de1f765e /drivers/gpu/drm/udl
parentc7e951147d92319e1d2477628abfa36f277f887e (diff)
downloadlinux-bf02d87fa458a665c176eaefd58d29bc615a8875.tar.xz
drm/udl: use helpers
Signed-off-by: Rob Clark <robdclark@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/udl')
-rw-r--r--drivers/gpu/drm/udl/udl_connector.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/gpu/drm/udl/udl_connector.c b/drivers/gpu/drm/udl/udl_connector.c
index dea38ab6c47d..e026a9e2942a 100644
--- a/drivers/gpu/drm/udl/udl_connector.c
+++ b/drivers/gpu/drm/udl/udl_connector.c
@@ -105,14 +105,7 @@ static struct drm_encoder*
udl_best_single_encoder(struct drm_connector *connector)
{
int enc_id = connector->encoder_ids[0];
- struct drm_mode_object *obj;
- struct drm_encoder *encoder;
-
- obj = drm_mode_object_find(connector->dev, enc_id, DRM_MODE_OBJECT_ENCODER);
- if (!obj)
- return NULL;
- encoder = obj_to_encoder(obj);
- return encoder;
+ return drm_encoder_find(connector->dev, enc_id);
}
static int udl_connector_set_property(struct drm_connector *connector,