diff options
| author | Daniel Vetter <[email protected]> | 2018-07-09 08:40:07 +0000 |
|---|---|---|
| committer | Daniel Vetter <[email protected]> | 2018-07-13 16:40:27 +0000 |
| commit | cde4c44d8769c1be16074c097592c46c7d64092b (patch) | |
| tree | a5580486ad6fb6a4e9c2095cc06c90f16d96449e /drivers/gpu/drm/rockchip/cdn-dp-core.c | |
| parent | drm: drop _mode_ from update_edit_property() (diff) | |
| download | kernel-cde4c44d8769c1be16074c097592c46c7d64092b.tar.gz kernel-cde4c44d8769c1be16074c097592c46c7d64092b.zip | |
drm: drop _mode_ from drm_mode_connector_attach_encoder
Again to align with the usual prefix of just drm_connector_. Again
done with sed + manual fixup 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/rockchip/cdn-dp-core.c')
| -rw-r--r-- | drivers/gpu/drm/rockchip/cdn-dp-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/rockchip/cdn-dp-core.c b/drivers/gpu/drm/rockchip/cdn-dp-core.c index a40cb2be50e1..8ad0d773dc33 100644 --- a/drivers/gpu/drm/rockchip/cdn-dp-core.c +++ b/drivers/gpu/drm/rockchip/cdn-dp-core.c @@ -1062,7 +1062,7 @@ static int cdn_dp_bind(struct device *dev, struct device *master, void *data) drm_connector_helper_add(connector, &cdn_dp_connector_helper_funcs); - ret = drm_mode_connector_attach_encoder(connector, encoder); + ret = drm_connector_attach_encoder(connector, encoder); if (ret) { DRM_ERROR("failed to attach connector and encoder\n"); goto err_free_connector; |
