提交 c2cc215c 编写于 作者: C Cihangir Akturk 提交者: Liviu Dudau

drm: mali-dp: switch to drm_*_get(), drm_*_put() helpers

Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference()
and drm_*_unreference() helpers.

drm_*_reference() and drm_*_unreference() functions are just
compatibility alias for drm_*_get() and drm_*_put() and should not be
used by new code. So convert all users of compatibility functions to
use the new APIs.

Generated by: scripts/coccinelle/api/drm-get-put.cocci
Signed-off-by: NCihangir Akturk <cakturk@gmail.com>
Acked-by: NLiviu Dudau <Liviu.Dudau@arm.com>
Signed-off-by: NLiviu Dudau <liviu.dudau@arm.com>
上级 c209101f
...@@ -57,7 +57,7 @@ static void malidp_de_plane_destroy(struct drm_plane *plane) ...@@ -57,7 +57,7 @@ static void malidp_de_plane_destroy(struct drm_plane *plane)
struct malidp_plane *mp = to_malidp_plane(plane); struct malidp_plane *mp = to_malidp_plane(plane);
if (mp->base.fb) if (mp->base.fb)
drm_framebuffer_unreference(mp->base.fb); drm_framebuffer_put(mp->base.fb);
drm_plane_helper_disable(plane); drm_plane_helper_disable(plane);
drm_plane_cleanup(plane); drm_plane_cleanup(plane);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册