Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e007488b authored by Haneen Mohammed's avatar Haneen Mohammed Committed by Sean Paul
Browse files

drm: remove drm_mode_object_{un/reference} aliases



This patch remove the compatibility aliases
drm_mode_object_{reference/unreference} of drm_mode_object_{get/put}
since all callers have been converted to the prefered _{get/put}.

Remove the helpers from the semantic patch drm-get-put-cocci.

Signed-off-by: default avatarHaneen Mohammed <hamohammed.sa@gmail.com>
Signed-off-by: default avatarSean Paul <seanpaul@chromium.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20180319055820.GA17502@haneen-VirtualBox
parent c5fe4732
Loading
Loading
Loading
Loading
+0 −24
Original line number Diff line number Diff line
@@ -120,30 +120,6 @@ struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
void drm_mode_object_get(struct drm_mode_object *obj);
void drm_mode_object_put(struct drm_mode_object *obj);

/**
 * drm_mode_object_reference - acquire a mode object reference
 * @obj: DRM mode object
 *
 * This is a compatibility alias for drm_mode_object_get() and should not be
 * used by new code.
 */
static inline void drm_mode_object_reference(struct drm_mode_object *obj)
{
	drm_mode_object_get(obj);
}

/**
 * drm_mode_object_unreference - release a mode object reference
 * @obj: DRM mode object
 *
 * This is a compatibility alias for drm_mode_object_put() and should not be
 * used by new code.
 */
static inline void drm_mode_object_unreference(struct drm_mode_object *obj)
{
	drm_mode_object_put(obj);
}

int drm_object_property_set_value(struct drm_mode_object *obj,
				  struct drm_property *property,
				  uint64_t val);
+0 −10
Original line number Diff line number Diff line
@@ -16,12 +16,6 @@ expression object;
@@

(
- drm_mode_object_reference(object)
+ drm_mode_object_get(object)
|
- drm_mode_object_unreference(object)
+ drm_mode_object_put(object)
|
- drm_connector_reference(object)
+ drm_connector_get(object)
|
@@ -62,10 +56,6 @@ position p;
@@

(
drm_mode_object_unreference@p(object)
|
drm_mode_object_reference@p(object)
|
drm_connector_unreference@p(object)
|
drm_connector_reference@p(object)