summaryrefslogtreecommitdiff
path: root/drivers/staging
diff options
context:
space:
mode:
authorH Hartley Sweeten <hsweeten@visionengravers.com>2016-05-02 17:11:52 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-05-03 21:11:15 (GMT)
commit5c69585837686e127762bd20658b18c14dfaf57c (patch)
treea93223fbf33c93229aa46fb31a6906045c47e4d3 /drivers/staging
parentb21f1fc84cb6ad217e5d450e217767f37ca1dee5 (diff)
downloadlinux-5c69585837686e127762bd20658b18c14dfaf57c.tar.xz
staging: comedi: mite: tidy up module init/exit
Move the module_init()/module_exit() so they are in the prefered spot on the line after the function. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/comedi/drivers/mite.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/comedi/drivers/mite.c b/drivers/staging/comedi/drivers/mite.c
index 440090e..b1c0860 100644
--- a/drivers/staging/comedi/drivers/mite.c
+++ b/drivers/staging/comedi/drivers/mite.c
@@ -945,12 +945,11 @@ static int __init mite_module_init(void)
{
return 0;
}
+module_init(mite_module_init);
static void __exit mite_module_exit(void)
{
}
-
-module_init(mite_module_init);
module_exit(mite_module_exit);
MODULE_AUTHOR("Comedi http://www.comedi.org");