]> Git Repo - linux.git/commit
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)
commit1f318a8bafcfba9f0d623f4870c4e890fd22e659
tree5bda66889143dab5f6cbe26e97b6feb998e64ae0
parent7598d167df99ddadb7f7bd803d1413af740f3617
modules: mark __inittest/__exittest as __maybe_unused

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
This page took 0.056727 seconds and 4 git commands to generate.