summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/bridge/tc358764.c
diff options
context:
space:
mode:
authorFernando Ramos <greenfoo@gluegarage.com>2018-11-16 01:16:25 +0300
committerLinus Walleij <linus.walleij@linaro.org>2018-11-25 00:12:55 +0300
commit895170ce9205f3f19fb00e54e2a620389bd11038 (patch)
tree0e88f787a40f668ea843fa72d7471dd46dd43b98 /drivers/gpu/drm/bridge/tc358764.c
parentba1d345401476a5f7fbad622607c5a1f95e59b31 (diff)
downloadlinux-895170ce9205f3f19fb00e54e2a620389bd11038.tar.xz
drm: replace "drm_connector_unreference" with "drm_connector_put"
This patch unifies the naming of DRM functions for reference counting as requested on Documentation/gpu/todo.rst Signed-off-by: Fernando Ramos <greenfoo@gluegarage.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20181115221634.22715-6-greenfoo@gluegarage.com
Diffstat (limited to 'drivers/gpu/drm/bridge/tc358764.c')
-rw-r--r--drivers/gpu/drm/bridge/tc358764.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/bridge/tc358764.c b/drivers/gpu/drm/bridge/tc358764.c
index ee6b98efa9c2..afd491018bfc 100644
--- a/drivers/gpu/drm/bridge/tc358764.c
+++ b/drivers/gpu/drm/bridge/tc358764.c
@@ -379,7 +379,7 @@ static void tc358764_detach(struct drm_bridge *bridge)
drm_fb_helper_remove_one_connector(drm->fb_helper, &ctx->connector);
drm_panel_detach(ctx->panel);
ctx->panel = NULL;
- drm_connector_unreference(&ctx->connector);
+ drm_connector_put(&ctx->connector);
}
static const struct drm_bridge_funcs tc358764_bridge_funcs = {