summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorJianjun Kong <jianjun@zeuux.org>2008-12-08 14:26:29 +0800
committerRusty Russell <rusty@rustcorp.com.au>2009-01-05 08:40:11 +1030
commitd1e99d7ae4e6bbd1ebb5e81ecd3af2b8793efee0 (patch)
tree15254031f4f91656f55876f52d037b7c3525c4db /kernel
parentca4787b779dd698a2a33a328aa5fa90a3e954077 (diff)
module: fix warning of unused function when !CONFIG_PROC_FS
Fix this warning: kernel/module.c:824: warning: ‘print_unload_info’ defined but not used print_unload_info() just was used when CONFIG_PROC_FS was defined. This patch mark print_unload_info() inline to solve the problem. Signed-off-by: Jianjun Kong <jianjun@zeuux.org> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> CC: Ingo Molnar <mingo@elte.hu> CC: Américo Wang <xiyou.wangcong@gmail.com>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/module.c4
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)
return ret;
}
-static void print_unload_info(struct seq_file *m, struct module *mod)
+static inline void print_unload_info(struct seq_file *m, struct module *mod)
{
struct module_use *use;
int printed_something = 0;
@@ -893,7 +893,7 @@ void module_put(struct module *module)
EXPORT_SYMBOL(module_put);
#else /* !CONFIG_MODULE_UNLOAD */
-static void print_unload_info(struct seq_file *m, struct module *mod)
+static inline void print_unload_info(struct seq_file *m, struct module *mod)
{
/* We don't know the usage count, or what modules are using. */
seq_printf(m, " - -");