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: Haneen Mohammed <hamohammed.sa@gmail.com> Signed-off-by: Sean Paul <seanpaul@chromium.org> Link: https://patchwork.freedesktop.org/patch/msgid/20180319055820.GA17502@haneen-VirtualBox
This commit is contained in:

committed by
Sean Paul

parent
c5fe47327b
commit
e007488b2f
@@ -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)
|
||||
|
Reference in New Issue
Block a user