aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/ast/ast_main.c
diff options
context:
space:
mode:
authorGabriel Krisman Bertazi <krisman@collabora.co.uk>2017-01-06 12:57:31 -0500
committerDaniel Vetter <daniel.vetter@ffwll.ch>2017-01-09 05:25:22 -0500
commit11b3c20bdd15d17382068be569740de1dccb173d (patch)
tree149ab965e3bd31ee3885c8361cb262ba450f9fb0 /drivers/gpu/drm/ast/ast_main.c
parent931c670d209b64a6033c1a2857ff309eee88f9c8 (diff)
drm: Change the return type of the unload hook to void
The integer returned by the unload hook is ignored by the drm core, so let's make it void. This patch was created using the following Coccinelle semantic script (except for the declaration and comment in drm_drv.h): Compile-tested only. // <smpl> @ get_name @ struct drm_driver drv; identifier fn; @@ drv.unload = fn; @ replace_type @ identifier get_name.fn; @@ - int + void fn (...) { ... } @ remove_return_param @ identifier get_name.fn; @@ void fn (...) { <... if (...) return - ... ; ...> } @ drop_final_return @ identifier get_name.fn; @@ void fn (...) { ... - return 0; } // </smpl> Suggested-by: Daniel Vetter <daniel.vetter@intel.com> Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.co.uk> Acked-by: Christian König <christian.koenig@amd.com>. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/20170106175731.29196-1-krisman@collabora.co.uk
Diffstat (limited to 'drivers/gpu/drm/ast/ast_main.c')
-rw-r--r--drivers/gpu/drm/ast/ast_main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/ast/ast_main.c b/drivers/gpu/drm/ast/ast_main.c
index d85af0ff2653..5b59888426cf 100644
--- a/drivers/gpu/drm/ast/ast_main.c
+++ b/drivers/gpu/drm/ast/ast_main.c
@@ -476,7 +476,7 @@ out_free:
476 return ret; 476 return ret;
477} 477}
478 478
479int ast_driver_unload(struct drm_device *dev) 479void ast_driver_unload(struct drm_device *dev)
480{ 480{
481 struct ast_private *ast = dev->dev_private; 481 struct ast_private *ast = dev->dev_private;
482 482
@@ -489,7 +489,6 @@ int ast_driver_unload(struct drm_device *dev)
489 pci_iounmap(dev->pdev, ast->ioregs); 489 pci_iounmap(dev->pdev, ast->ioregs);
490 pci_iounmap(dev->pdev, ast->regs); 490 pci_iounmap(dev->pdev, ast->regs);
491 kfree(ast); 491 kfree(ast);
492 return 0;
493} 492}
494 493
495int ast_gem_create(struct drm_device *dev, 494int ast_gem_create(struct drm_device *dev,