drm/arm: Replace instances of drm_dev_unref with drm_dev_put.
authorSrishti Sharma <srishtishar@gmail.com>
Fri, 29 Sep 2017 10:00:40 +0000 (15:30 +0530)
committerLiviu Dudau <Liviu.Dudau@arm.com>
Fri, 24 Nov 2017 15:42:35 +0000 (15:42 +0000)
commit0970d7a2f5b0dcdd520c7655210d677f6e9a878e
tree4c9640ecec00d9f1cb0a256d30ec66d9c244ae9f
parentc2cc215cde5b3fd4102c9595df66c6e4ff237be4
drm/arm: Replace instances of drm_dev_unref with drm_dev_put.

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 <srishtishar@gmail.com>
[split patch into hdlcd and mali-dp versions]
Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
drivers/gpu/drm/arm/malidp_drv.c