diff options
Diffstat (limited to 'arch/mn10300')
-rw-r--r-- | arch/mn10300/kernel/module.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/mn10300/kernel/module.c b/arch/mn10300/kernel/module.c index 0e4d2f6fa6e8..8fa36893df7a 100644 --- a/arch/mn10300/kernel/module.c +++ b/arch/mn10300/kernel/module.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <linux/fs.h> | 24 | #include <linux/fs.h> |
25 | #include <linux/string.h> | 25 | #include <linux/string.h> |
26 | #include <linux/kernel.h> | 26 | #include <linux/kernel.h> |
27 | #include <linux/bug.h> | ||
27 | 28 | ||
28 | #if 0 | 29 | #if 0 |
29 | #define DEBUGP printk | 30 | #define DEBUGP printk |
@@ -195,7 +196,7 @@ int module_finalize(const Elf_Ehdr *hdr, | |||
195 | const Elf_Shdr *sechdrs, | 196 | const Elf_Shdr *sechdrs, |
196 | struct module *me) | 197 | struct module *me) |
197 | { | 198 | { |
198 | return 0; | 199 | return module_bug_finalize(hdr, sechdrs, me); |
199 | } | 200 | } |
200 | 201 | ||
201 | /* | 202 | /* |
@@ -203,4 +204,5 @@ int module_finalize(const Elf_Ehdr *hdr, | |||
203 | */ | 204 | */ |
204 | void module_arch_cleanup(struct module *mod) | 205 | void module_arch_cleanup(struct module *mod) |
205 | { | 206 | { |
207 | module_bug_cleanup(mod); | ||
206 | } | 208 | } |