]> Git Repo - linux.git/commitdiff
modules: mark __inittest/__exittest as __maybe_unused
authorArnd Bergmann <[email protected]>
Wed, 1 Feb 2017 17:00:14 +0000 (18:00 +0100)
committerJessica Yu <[email protected]>
Mon, 6 Feb 2017 23:26:15 +0000 (15:26 -0800)
clang warns about unused inline functions by default:

arch/arm/crypto/aes-cipher-glue.c:68:1: warning: unused function '__inittest' [-Wunused-function]
arch/arm/crypto/aes-cipher-glue.c:69:1: warning: unused function '__exittest' [-Wunused-function]

As these appear in every single module, let's just disable the warnings by marking the
two functions as __maybe_unused.

Signed-off-by: Arnd Bergmann <[email protected]>
Reviewed-by: Miroslav Benes <[email protected]>
Acked-by: Rusty Russell <[email protected]>
Signed-off-by: Jessica Yu <[email protected]>
include/linux/module.h

index ef599379f9a431940f08440b433fc0fdcd4fc6e6..4e09f469bd7d66d23bb778af246d93861f8cf08d 100644 (file)
@@ -127,13 +127,13 @@ extern void cleanup_module(void);
 
 /* Each module must use one module_init(). */
 #define module_init(initfn)                                    \
-       static inline initcall_t __inittest(void)               \
+       static inline initcall_t __maybe_unused __inittest(void)                \
        { return initfn; }                                      \
        int init_module(void) __attribute__((alias(#initfn)));
 
 /* This is only required if you want to be unloadable. */
 #define module_exit(exitfn)                                    \
-       static inline exitcall_t __exittest(void)               \
+       static inline exitcall_t __maybe_unused __exittest(void)                \
        { return exitfn; }                                      \
        void cleanup_module(void) __attribute__((alias(#exitfn)));
 
This page took 0.063086 seconds and 4 git commands to generate.