diff options
author | Fernando Ramos <greenfoo@gluegarage.com> | 2018-11-15 23:16:26 +0100 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2018-11-24 22:12:55 +0100 |
commit | 8dd0e9d3aa993af1357e1455602fe6eba2d06741 (patch) | |
tree | 9539b98d93b6bc5e988c85e2a406eeaa4fe25199 /include/drm/drm_connector.h | |
parent | 895170ce9205f3f19fb00e54e2a620389bd11038 (diff) | |
download | linux-8dd0e9d3aa993af1357e1455602fe6eba2d06741.tar.gz linux-8dd0e9d3aa993af1357e1455602fe6eba2d06741.tar.bz2 linux-8dd0e9d3aa993af1357e1455602fe6eba2d06741.zip |
drm: remove deprecated "drm_connector_[un]reference" functions
There are no more places where this (deprecated) function is being
used from, thus it can now be removed.
Signed-off-by: Fernando Ramos <greenfoo@gluegarage.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20181115221634.22715-7-greenfoo@gluegarage.com
Diffstat (limited to 'include/drm/drm_connector.h')
-rw-r--r-- | include/drm/drm_connector.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h index dd0552cb7472..2f38d3598eb4 100644 --- a/include/drm/drm_connector.h +++ b/include/drm/drm_connector.h @@ -1193,30 +1193,6 @@ static inline void drm_connector_put(struct drm_connector *connector) } /** - * drm_connector_reference - acquire a connector reference - * @connector: DRM connector - * - * This is a compatibility alias for drm_connector_get() and should not be - * used by new code. - */ -static inline void drm_connector_reference(struct drm_connector *connector) -{ - drm_connector_get(connector); -} - -/** - * drm_connector_unreference - release a connector reference - * @connector: DRM connector - * - * This is a compatibility alias for drm_connector_put() and should not be - * used by new code. - */ -static inline void drm_connector_unreference(struct drm_connector *connector) -{ - drm_connector_put(connector); -} - -/** * drm_connector_is_unregistered - has the connector been unregistered from * userspace? * @connector: DRM connector |