]> git.karo-electronics.de Git - linux-beck.git/commitdiff
(trivial) Fix compiler warning in kernel/modules.c
authorMichał Mirosław <mirq-linux@rere.qmqm.pl>
Sun, 19 Sep 2010 23:58:08 +0000 (01:58 +0200)
committerRusty Russell <rusty@rustcorp.com.au>
Wed, 27 Oct 2010 10:03:05 +0000 (20:33 +1030)
Building with CONFIG_KALLSYMS=n gives following warning:

/mnt/src/linux-git/kernel/module.c: In function ‘post_relocation’:
/mnt/src/linux-git/kernel/module.c:2534:2: warning: passing argument 2 of ‘add_kallsyms’ discards qualifiers from pointer target type
/mnt/src/linux-git/kernel/module.c:2038:13: note: expected ‘struct load_info *’ but argument is of type ‘const struct load_info *’

Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
kernel/module.c

index 2df46301a7a407dcde3435542e38f6944358d7c1..437a74a7524a7f592f669dbdc91a6c90503959ae 100644 (file)
@@ -2037,7 +2037,7 @@ static inline void layout_symtab(struct module *mod, struct load_info *info)
 {
 }
 
-static void add_kallsyms(struct module *mod, struct load_info *info)
+static void add_kallsyms(struct module *mod, const struct load_info *info)
 {
 }
 #endif /* CONFIG_KALLSYMS */