diff options
author | Alexey Dobriyan <adobriyan@sw.ru> | 2007-10-17 02:26:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:46 -0400 |
commit | f6b450d489f2fb4e909447beacad64edb8aa0cda (patch) | |
tree | 85240acdf3d5c1cb2f193a72c99e24789acc0a0e /fs/exec.c | |
parent | e4dc1b14d8dc57c3975bf69740e4f5cda6bfba09 (diff) |
Make unregister_binfmt() return void
list_del() hardly can fail, so checking for return value is pointless
(and current code always return 0).
Nobody really cared that return value anyway.
Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/exec.c')
-rw-r--r-- | fs/exec.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -81,12 +81,11 @@ int register_binfmt(struct linux_binfmt * fmt) | |||
81 | 81 | ||
82 | EXPORT_SYMBOL(register_binfmt); | 82 | EXPORT_SYMBOL(register_binfmt); |
83 | 83 | ||
84 | int unregister_binfmt(struct linux_binfmt * fmt) | 84 | void unregister_binfmt(struct linux_binfmt * fmt) |
85 | { | 85 | { |
86 | write_lock(&binfmt_lock); | 86 | write_lock(&binfmt_lock); |
87 | list_del(&fmt->lh); | 87 | list_del(&fmt->lh); |
88 | write_unlock(&binfmt_lock); | 88 | write_unlock(&binfmt_lock); |
89 | return 0; | ||
90 | } | 89 | } |
91 | 90 | ||
92 | EXPORT_SYMBOL(unregister_binfmt); | 91 | EXPORT_SYMBOL(unregister_binfmt); |