diff options
author | Srishti Sharma <srishtishar@gmail.com> | 2017-09-29 15:30:40 +0530 |
---|---|---|
committer | Liviu Dudau <Liviu.Dudau@arm.com> | 2017-11-27 09:51:42 +0000 |
commit | f73e8b82531573a198a4d0e5bff0d3256cbbd1d8 (patch) | |
tree | 0f0bf111b16153fdec9e2eb1dc4d46c1dcdde6c5 /drivers/gpu/drm/arm | |
parent | fa56b3f83177e1ad60815f750dd3816bd4c25677 (diff) | |
download | linux-f73e8b82531573a198a4d0e5bff0d3256cbbd1d8.tar.bz2 |
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>
Diffstat (limited to 'drivers/gpu/drm/arm')
-rw-r--r-- | drivers/gpu/drm/arm/hdlcd_drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/arm/hdlcd_drv.c b/drivers/gpu/drm/arm/hdlcd_drv.c index 45b174fea36b..0afb53b1f4e9 100644 --- a/drivers/gpu/drm/arm/hdlcd_drv.c +++ b/drivers/gpu/drm/arm/hdlcd_drv.c @@ -355,7 +355,7 @@ err_unload: err_free: drm_mode_config_cleanup(drm); dev_set_drvdata(dev, NULL); - drm_dev_unref(drm); + drm_dev_put(drm); return ret; } @@ -380,7 +380,7 @@ static void hdlcd_drm_unbind(struct device *dev) pm_runtime_disable(drm->dev); of_reserved_mem_device_release(drm->dev); drm_mode_config_cleanup(drm); - drm_dev_unref(drm); + drm_dev_put(drm); drm->dev_private = NULL; dev_set_drvdata(dev, NULL); } |