]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm: remove deprecated "drm_connector_[un]reference" functions
authorFernando Ramos <greenfoo@gluegarage.com>
Thu, 15 Nov 2018 22:16:26 +0000 (23:16 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Sat, 24 Nov 2018 21:12:55 +0000 (22:12 +0100)
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
include/drm/drm_connector.h

index dd0552cb747232cc7ac89003c6af846d6b90a0e5..2f38d3598eb498ee99245ba7e569d5e5ccc46448 100644 (file)
@@ -1192,30 +1192,6 @@ static inline void drm_connector_put(struct drm_connector *connector)
        drm_mode_object_put(&connector->base);
 }
 
-/**
- * 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?