Commit e78b47a5 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Paul Mackerras

[PATCH] spufs: fix __init/__exit annotations

spufs_init and spufs_exit should be marked correctly so
they can be removed when not needed.
Signed-off-by: default avatarArnd Bergmann <arnd.bergmann@de.ibm.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent f4d1749e
...@@ -442,7 +442,7 @@ static struct file_system_type spufs_type = { ...@@ -442,7 +442,7 @@ static struct file_system_type spufs_type = {
.kill_sb = kill_litter_super, .kill_sb = kill_litter_super,
}; };
static int spufs_init(void) static int __init spufs_init(void)
{ {
int ret; int ret;
ret = -ENOMEM; ret = -ENOMEM;
...@@ -472,7 +472,7 @@ out: ...@@ -472,7 +472,7 @@ out:
} }
module_init(spufs_init); module_init(spufs_init);
static void spufs_exit(void) static void __exit spufs_exit(void)
{ {
spu_sched_exit(); spu_sched_exit();
unregister_spu_syscalls(&spufs_calls); unregister_spu_syscalls(&spufs_calls);
......
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