Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5c695858 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

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: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b21f1fc8
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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");