diff options
author | 2017-10-09 17:36:43 +0530 | |
---|---|---|
committer | 2017-10-13 16:53:59 +0200 | |
commit | c3ed110386db97e8213151ddc665adedf6cd11df (patch) | |
tree | f0b6df6e8db551da67d1473d7bef4415cb8a5ee7 /tools/perf/scripts/python/export-to-postgresql.py | |
parent | drm/i915: Get rid of hardcoded pipes (diff) | |
download | linux-dev-c3ed110386db97e8213151ddc665adedf6cd11df.tar.xz linux-dev-c3ed110386db97e8213151ddc665adedf6cd11df.zip |
drm/i915: Replace *_reference/unreference() or *_ref/unref with _get/put()
Replace instances of drm_framebuffer_reference/unreference() with
*_get/put() suffixes and drm_dev_unref with *_put() suffix
because get/put is shorter and consistent with the
kernel use of *_get/put suffixes.
Done with following coccinelle semantic patch
@@
expression ex;
@@
(
-drm_framebuffer_unreference(ex);
+drm_framebuffer_put(ex);
|
-drm_dev_unref(ex);
+drm_dev_put(ex);
|
-drm_framebuffer_reference(ex);
+drm_framebuffer_get(ex);
)
Signed-off-by: Harsha Sharma <harshasharmaiitr@gmail.com>
[danvet: Drop the drm_dev_put change for now, to make the patch apply
with out a backmerge.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20171009120643.11953-1-harshasharmaiitr@gmail.com
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions