ARM: module: fix modsign build error
authorArnd Bergmann <arnd@arndb.de>
Fri, 6 Jul 2018 12:48:47 +0000 (14:48 +0200)
committerJessica Yu <jeyu@kernel.org>
Mon, 9 Jul 2018 18:29:49 +0000 (20:29 +0200)
The asm/module.h header file can not be included standalone, which
breaks the module signing code after a recent change:

In file included from kernel/module-internal.h:13,
                 from kernel/module_signing.c:17:
arch/arm/include/asm/module.h:37:27: error: 'struct module' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
 u32 get_module_plt(struct module *mod, unsigned long loc, Elf32_Addr val);

This adds a forward declaration of struct module to make it all work.

Fixes: f314dfea16a0 ("modsign: log module name in the event of an error")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: Jessica Yu <jeyu@kernel.org>
arch/arm/include/asm/module.h

index 89ad0596033abab691d76ca426f81b4136932f86..9e81b7c498d8b9b826b601487e843cebac1c1f45 100644 (file)
@@ -34,6 +34,7 @@ struct mod_arch_specific {
 #endif
 };
 
+struct module;
 u32 get_module_plt(struct module *mod, unsigned long loc, Elf32_Addr val);
 
 /*