diff options
| author | Daniel Vetter <[email protected]> | 2018-07-09 08:40:08 +0000 |
|---|---|---|
| committer | Daniel Vetter <[email protected]> | 2018-07-13 16:40:27 +0000 |
| commit | 97e14fbeb53fe060c5f6a7a07e37fd24c087ed0c (patch) | |
| tree | 848f96ce3daf9dc0c037ed71c8611fcec21bff36 /drivers/gpu/drm/i915/intel_dp_mst.c | |
| parent | drm: drop _mode_ from drm_mode_connector_attach_encoder (diff) | |
| download | kernel-97e14fbeb53fe060c5f6a7a07e37fd24c087ed0c.tar.gz kernel-97e14fbeb53fe060c5f6a7a07e37fd24c087ed0c.zip | |
drm: drop _mode_ from remaining connector functions
Since there's very few callers of these I've decided to do them all in
one patch. With this the unecessarily long drm_mode_connector_ prefix
is gone from the codebase! The only exception being struct
drm_mode_connector_set_property, which is part of the uapi so can't be
renamed.
Again done with sed+some manual fixups for indent issues.
Reviewed-by: Sean Paul <[email protected]>
Signed-off-by: Daniel Vetter <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Diffstat (limited to 'drivers/gpu/drm/i915/intel_dp_mst.c')
| -rw-r--r-- | drivers/gpu/drm/i915/intel_dp_mst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_dp_mst.c b/drivers/gpu/drm/i915/intel_dp_mst.c index 364330fc5d6a..0095c197f155 100644 --- a/drivers/gpu/drm/i915/intel_dp_mst.c +++ b/drivers/gpu/drm/i915/intel_dp_mst.c @@ -474,7 +474,7 @@ static struct drm_connector *intel_dp_add_mst_connector(struct drm_dp_mst_topolo drm_object_attach_property(&connector->base, dev->mode_config.path_property, 0); drm_object_attach_property(&connector->base, dev->mode_config.tile_property, 0); - ret = drm_mode_connector_set_path_property(connector, pathprop); + ret = drm_connector_set_path_property(connector, pathprop); if (ret) goto err; |
