diff options
author | 2018-03-11 17:33:13 -0600 | |
---|---|---|
committer | 2018-03-14 14:52:05 +0100 | |
commit | 25a28906ebee1b1093a6f72fb6d44b9441f48ebc (patch) | |
tree | 96779c3b3e26601526d56558d7718b288f5a4d72 /tools/perf/scripts/python/export-to-postgresql.py | |
parent | drm/rockchip: Don't use spin_lock_irqsave in interrupt context (diff) | |
download | linux-dev-25a28906ebee1b1093a6f72fb6d44b9441f48ebc.tar.xz linux-dev-25a28906ebee1b1093a6f72fb6d44b9441f48ebc.zip |
drm/vmwgfx: replace drm_*_unreference with drm_*_put
This patch replace instances of drm_framebuffer_unreference with _put()
suffix, because it is shorter and consistent with the kernel use of
*_get/put() suffixes.
This was done with the following Coccinelle script:
@r@
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>
Acked-by: Sinclair Yeh <syeh@vmware.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20180311233313.GA19721@Haneen
Diffstat (limited to 'tools/perf/scripts/python/export-to-postgresql.py')
0 files changed, 0 insertions, 0 deletions