diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-29 03:59:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 11:06:01 -0400 |
commit | 3202e1811fd312f3f32ddc8f526aa2691b64ec55 (patch) | |
tree | 57542acf2fad8f36de17499f1926809d331325a6 /fs/binfmt_flat.c | |
parent | f1e3af72c10ba74fb15864c354515ec1bd8bf2a5 (diff) |
make BINFMT_FLAT a bool
I have not yet seen anyone saying he has a reasonable use case for using
BINFMT_FLAT modular on his embedded device.
Considering that fs/binfmt_flat.c even lacks a MODULE_LICENSE() I really doubt
there is any, and this patch therefore makes BINFMT_FLAT a bool.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Bryan Wu <cooloney.lkml@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/binfmt_flat.c')
-rw-r--r-- | fs/binfmt_flat.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/binfmt_flat.c b/fs/binfmt_flat.c index 0498b181dd52..c12cc362fd3b 100644 --- a/fs/binfmt_flat.c +++ b/fs/binfmt_flat.c | |||
@@ -932,14 +932,8 @@ static int __init init_flat_binfmt(void) | |||
932 | return register_binfmt(&flat_format); | 932 | return register_binfmt(&flat_format); |
933 | } | 933 | } |
934 | 934 | ||
935 | static void __exit exit_flat_binfmt(void) | ||
936 | { | ||
937 | unregister_binfmt(&flat_format); | ||
938 | } | ||
939 | |||
940 | /****************************************************************************/ | 935 | /****************************************************************************/ |
941 | 936 | ||
942 | core_initcall(init_flat_binfmt); | 937 | core_initcall(init_flat_binfmt); |
943 | module_exit(exit_flat_binfmt); | ||
944 | 938 | ||
945 | /****************************************************************************/ | 939 | /****************************************************************************/ |