]> git.baikalelectronics.ru Git - kernel.git/commit
arm64: mark cpus_have_hwcap as __maybe_unused
authorArnd Bergmann <arnd@arndb.de>
Thu, 12 Nov 2015 14:20:16 +0000 (15:20 +0100)
committerCatalin Marinas <catalin.marinas@arm.com>
Thu, 12 Nov 2015 15:18:01 +0000 (15:18 +0000)
commit8018969247092a3d4c321c481b8bb96a7bffa102
treed5b694dc403891f981b70767ebea846b4153b77f
parent3a38d988d3da538ce7eeff036cd16d1a87e94761
arm64: mark cpus_have_hwcap as __maybe_unused

cpus_have_hwcap() is defined as a 'static' function an only used in
one place that is inside of an #ifdef, so we get a warning when
the only user is disabled:

arch/arm64/kernel/cpufeature.c:699:13: warning: 'cpus_have_hwcap' defined but not used [-Wunused-function]

This marks the function as __maybe_unused, so the compiler knows that
it can drop the function definition without warning about it.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 8165b3a2566d ("arm64/HWCAP: Use system wide safe values")
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/kernel/cpufeature.c