diff options
author | 2017-09-20 12:57:16 -0600 | |
---|---|---|
committer | 2017-10-16 15:02:44 -0400 | |
commit | a52ff2a509a77aacdcc464f26181e77d49880da9 (patch) | |
tree | 1d6051260b86b66abd680cd12957c5f64dabd112 /tools/perf/scripts/python/export-to-postgresql.py | |
parent | drm/armada: Replace drm_gem_object_reference/unreference() with _get/put() (diff) | |
download | linux-dev-a52ff2a509a77aacdcc464f26181e77d49880da9.tar.xz linux-dev-a52ff2a509a77aacdcc464f26181e77d49880da9.zip |
drm/armada: Replace drm_framebuffer_reference/unreference() with _get/put()
This patch replace instances of drm_framebuffer_reference/unreference with
*_get/put() suffixes, because get/put is shorter and consistent with the
kernel use of *_get/put suffixes.
This was done with the following Coccinelle script:
@r1@
expression e;
@@
(
-drm_framebuffer_reference(e);
+drm_framebuffer_get(e);
|
-drm_framebuffer_unreference(e);
+drm_framebuffer_put(e);
)
Signed-off-by: Haneen Mohammed <hamohammed.sa@gmail.com>
Signed-off-by: Sean Paul <seanpaul@chromium.org>
Link: https://patchwork.freedesktop.org/patch/msgid/e1df1b3375faa819029559b11c32e10501c5c5d6.1505932812.git.hamohammed.sa@gmail.com
Diffstat (limited to 'tools/perf/scripts/python/export-to-postgresql.py')
0 files changed, 0 insertions, 0 deletions