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

2017-09-30 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 --- drivers/gpu/drm

[PATCH] drm/arm: Replace instances of drm_dev_unref with drm_dev_put.

2017-09-30 Thread Srishti Sharma
Replace drm_dev_unref with drm_dev_put as it is more consistent with kernel coding style. Done using the following semantic patch by coccinelle. @r@ expression e; @@ -drm_dev_unref(); +drm_dev_put(); Signed-off-by: Srishti Sharma --- drivers/gpu/drm/arm/hdlcd_drv.c | 4 ++-- drivers/gpu/drm