[PATCH] drm/virtio: Replace instances of reference/unreference with get/put

2017-10-26 Thread Srishti Sharma
Replace reference/unreference with get/put as it is consistent with the kernel coding style. Done using the following semantic patch by coccinelle. @r@ expression e; @@ -drm_gem_object_unreference_unlocked(e); +drm_gem_object_put_unlocked(e); Signed-off-by: Srishti Sharma

Re: [PATCH] drm/virtio: Replace instances of reference/unreference with get/put

2017-10-02 Thread Daniel Vetter
On Fri, Sep 29, 2017 at 03:33:39PM +0530, Srishti Sharma wrote: > Replace reference/unreference with get/put as it is consistent > with the kernel coding style. Done using the following semantic > patch by coccinelle. > > @r@ > expression e; > @@ > > -drm_gem_object_unreference_unlocked(e); >