diff options
Diffstat (limited to 'kernel/module.c')
-rw-r--r-- | kernel/module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/module.c b/kernel/module.c index 895c5675edb7..d3d254571bda 100644 --- a/kernel/module.c +++ b/kernel/module.c | |||
@@ -820,7 +820,7 @@ sys_delete_module(const char __user *name_user, unsigned int flags) | |||
820 | return ret; | 820 | return ret; |
821 | } | 821 | } |
822 | 822 | ||
823 | static void print_unload_info(struct seq_file *m, struct module *mod) | 823 | static inline void print_unload_info(struct seq_file *m, struct module *mod) |
824 | { | 824 | { |
825 | struct module_use *use; | 825 | struct module_use *use; |
826 | int printed_something = 0; | 826 | int printed_something = 0; |
@@ -893,7 +893,7 @@ void module_put(struct module *module) | |||
893 | EXPORT_SYMBOL(module_put); | 893 | EXPORT_SYMBOL(module_put); |
894 | 894 | ||
895 | #else /* !CONFIG_MODULE_UNLOAD */ | 895 | #else /* !CONFIG_MODULE_UNLOAD */ |
896 | static void print_unload_info(struct seq_file *m, struct module *mod) | 896 | static inline void print_unload_info(struct seq_file *m, struct module *mod) |
897 | { | 897 | { |
898 | /* We don't know the usage count, or what modules are using. */ | 898 | /* We don't know the usage count, or what modules are using. */ |
899 | seq_printf(m, " - -"); | 899 | seq_printf(m, " - -"); |