greybus: static module_init/exit functions

This commit is contained in:
Greg Kroah-Hartman 2014-08-30 16:21:03 -07:00
parent 199d68d4a8
commit 503c1cdbfb
1 changed files with 2 additions and 2 deletions

View File

@ -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)
{ {
} }