Commit 503c1cdb authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

greybus: static module_init/exit functions

parent 199d68d4
...@@ -161,12 +161,12 @@ static int new_device(struct greybus_device *gdev, ...@@ -161,12 +161,12 @@ static int new_device(struct greybus_device *gdev,
} }
int __init gb_init(void) static int __init gb_init(void)
{ {
return 0; return 0;
} }
void __exit gb_exit(void) static void __exit gb_exit(void)
{ {
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment