summaryrefslogtreecommitdiff
path: root/drivers/staging/greybus
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@linaro.org>2015-03-24 17:44:28 +0300
committerGreg Kroah-Hartman <greg@kroah.com>2015-03-24 23:00:24 +0300
commit0d34be75878093bef5055311c254ae3ff459fd8f (patch)
tree32511e46538a118f12e92c67ef5848051e2448ec /drivers/staging/greybus
parent13fe6a9af3d86019a10bdbd3195434e5a795b3b3 (diff)
downloadlinux-0d34be75878093bef5055311c254ae3ff459fd8f.tar.xz
greybus: Greybus: Place module_init/exit() right after respective routines
As mentioned in kernel coding guidelines. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
Diffstat (limited to 'drivers/staging/greybus')
-rw-r--r--drivers/staging/greybus/gpb.c3
-rw-r--r--drivers/staging/greybus/vibrator.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/drivers/staging/greybus/gpb.c b/drivers/staging/greybus/gpb.c
index 931d739f9fb9..33bbe7917f09 100644
--- a/drivers/staging/greybus/gpb.c
+++ b/drivers/staging/greybus/gpb.c
@@ -72,6 +72,7 @@ error_pwm:
error_gpio:
return -EPROTO;
}
+module_init(gpbridge_init);
static void __exit gpbridge_exit(void)
{
@@ -84,8 +85,6 @@ static void __exit gpbridge_exit(void)
gb_pwm_protocol_exit();
gb_gpio_protocol_exit();
}
-
-module_init(gpbridge_init);
module_exit(gpbridge_exit);
MODULE_LICENSE("GPL");
diff --git a/drivers/staging/greybus/vibrator.c b/drivers/staging/greybus/vibrator.c
index c92c69ef3025..2943a9b381c6 100644
--- a/drivers/staging/greybus/vibrator.c
+++ b/drivers/staging/greybus/vibrator.c
@@ -185,14 +185,13 @@ static __init int protocol_init(void)
return gb_protocol_register(&vibrator_protocol);
}
+module_init(protocol_init);
static __exit void protocol_exit(void)
{
gb_protocol_deregister(&vibrator_protocol);
class_unregister(&vibrator_class);
}
-
-module_init(protocol_init);
module_exit(protocol_exit);
MODULE_LICENSE("GPL v2");