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
This commit is contained in:
parent
1c85f2fa68
commit
25a28906eb
|
@ -500,7 +500,7 @@ static int vmw_fb_kms_detach(struct vmw_fb_par *par,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cur_fb) {
|
if (cur_fb) {
|
||||||
drm_framebuffer_unreference(cur_fb);
|
drm_framebuffer_put(cur_fb);
|
||||||
par->set_fb = NULL;
|
par->set_fb = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -316,7 +316,7 @@ int vmw_present_ioctl(struct drm_device *dev, void *data,
|
||||||
out_no_surface:
|
out_no_surface:
|
||||||
ttm_read_unlock(&dev_priv->reservation_sem);
|
ttm_read_unlock(&dev_priv->reservation_sem);
|
||||||
out_no_ttm_lock:
|
out_no_ttm_lock:
|
||||||
drm_framebuffer_unreference(fb);
|
drm_framebuffer_put(fb);
|
||||||
out_no_fb:
|
out_no_fb:
|
||||||
drm_modeset_unlock_all(dev);
|
drm_modeset_unlock_all(dev);
|
||||||
out_no_copy:
|
out_no_copy:
|
||||||
|
@ -393,7 +393,7 @@ int vmw_present_readback_ioctl(struct drm_device *dev, void *data,
|
||||||
|
|
||||||
ttm_read_unlock(&dev_priv->reservation_sem);
|
ttm_read_unlock(&dev_priv->reservation_sem);
|
||||||
out_no_ttm_lock:
|
out_no_ttm_lock:
|
||||||
drm_framebuffer_unreference(fb);
|
drm_framebuffer_put(fb);
|
||||||
out_no_fb:
|
out_no_fb:
|
||||||
drm_modeset_unlock_all(dev);
|
drm_modeset_unlock_all(dev);
|
||||||
out_no_copy:
|
out_no_copy:
|
||||||
|
|
Loading…
Reference in New Issue