]> git.baikalelectronics.ru Git - kernel.git/commit
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>
Mon, 27 Nov 2017 09:51:42 +0000 (09:51 +0000)
commite7df2c7409d194f89d070f8fad4c0b659fe0253b
tree0f0bf111b16153fdec9e2eb1dc4d46c1dcdde6c5
parentf06878f7707ee305bab847d234642e114004c7cb
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 into hdlcd and malidp specific patches]
Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
drivers/gpu/drm/arm/hdlcd_drv.c