diff mbox series

[RESEND] drm/arc: Replace drm_dev_unref with drm_dev_put

Message ID 20180926113315.22442-1-tzimmermann@suse.de (mailing list archive)
State New, archived
Headers show
Series [RESEND] drm/arc: Replace drm_dev_unref with drm_dev_put | expand

Commit Message

Thomas Zimmermann Sept. 26, 2018, 11:33 a.m. UTC
This patch unifies the naming of DRM functions for reference counting
of struct drm_device. The resulting code is more aligned with the rest
of the Linux kernel interfaces.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
---
 drivers/gpu/drm/arc/arcpgu_drv.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

--
2.19.0

Comments

Alexey Brodkin Sept. 27, 2018, 8:52 a.m. UTC | #1
Hi Thomas,

On Wed, 2018-09-26 at 13:33 +0200, Thomas Zimmermann wrote:
> This patch unifies the naming of DRM functions for reference counting
> of struct drm_device. The resulting code is more aligned with the rest
> of the Linux kernel interfaces.

Thanks for your clean-up efforts!
I'll pick it up to my tree.

Acked-by: Alexey Brodkin <abrodkin@synopsys.com>
diff mbox series

Patch

diff --git a/drivers/gpu/drm/arc/arcpgu_drv.c b/drivers/gpu/drm/arc/arcpgu_drv.c
index f067de4e1e82..27d426bf7d01 100644
--- a/drivers/gpu/drm/arc/arcpgu_drv.c
+++ b/drivers/gpu/drm/arc/arcpgu_drv.c
@@ -204,7 +204,7 @@  static int arcpgu_probe(struct platform_device *pdev)

 	ret = arcpgu_load(drm);
 	if (ret)
-		goto err_unref;
+		goto err_put;

 	ret = drm_dev_register(drm, 0);
 	if (ret)
@@ -215,8 +215,8 @@  static int arcpgu_probe(struct platform_device *pdev)
 err_unload:
 	arcpgu_unload(drm);

-err_unref:
-	drm_dev_unref(drm);
+err_put:
+	drm_dev_put(drm);

 	return ret;
 }
@@ -227,7 +227,7 @@  static int arcpgu_remove(struct platform_device *pdev)

 	drm_dev_unregister(drm);
 	arcpgu_unload(drm);
-	drm_dev_unref(drm);
+	drm_dev_put(drm);

 	return 0;
 }