diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-03-17 03:05:16 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-03-20 21:29:46 -0400 |
commit | 8fc3dc5a3a17aa2b353886422bd89420619af211 (patch) | |
tree | 74a3290ad9621ff1c225b772df2c529c8feb5f43 /fs/binfmt_som.c | |
parent | 54bf586e1f51018ba7624c851e7aa14cee0548d2 (diff) |
__register_binfmt() made void
Just don't pass NULL to it - nobody does, anyway.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/binfmt_som.c')
-rw-r--r-- | fs/binfmt_som.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/binfmt_som.c b/fs/binfmt_som.c index cc8560f6c9b0..ec15972dd98a 100644 --- a/fs/binfmt_som.c +++ b/fs/binfmt_som.c | |||
@@ -289,7 +289,8 @@ static int load_som_library(struct file *f) | |||
289 | 289 | ||
290 | static int __init init_som_binfmt(void) | 290 | static int __init init_som_binfmt(void) |
291 | { | 291 | { |
292 | return register_binfmt(&som_format); | 292 | register_binfmt(&som_format); |
293 | return 0; | ||
293 | } | 294 | } |
294 | 295 | ||
295 | static void __exit exit_som_binfmt(void) | 296 | static void __exit exit_som_binfmt(void) |