]> git.baikalelectronics.ru Git - kernel.git/commit
powerpc/xive: Do not mark xive_request_ipi() as __init
authorNathan Chancellor <nathan@kernel.org>
Mon, 16 Aug 2021 18:57:11 +0000 (11:57 -0700)
committerMichael Ellerman <mpe@ellerman.id.au>
Wed, 18 Aug 2021 13:52:13 +0000 (23:52 +1000)
commit783798825dd0013f4fd03c04d8f7157c6ee15861
tree519adb1a5174622aed1302932487d7dbb2da742b
parent1300afc33fe068a1c2e964d941904e8eec0a905a
powerpc/xive: Do not mark xive_request_ipi() as __init

Compiling ppc64le_defconfig with clang-14 shows a modpost warning:

WARNING: modpost: vmlinux.o(.text+0xa74e0): Section mismatch in
reference from the function xive_setup_cpu_ipi() to the function
.init.text:xive_request_ipi()
The function xive_setup_cpu_ipi() references
the function __init xive_request_ipi().
This is often because xive_setup_cpu_ipi lacks a __init
annotation or the annotation of xive_request_ipi is wrong.

xive_request_ipi() is called from xive_setup_cpu_ipi(), which is not
__init, so xive_request_ipi() should not be marked __init. Remove the
attribute so there is no more warning.

Fixes: 1300afc33fe0 ("powerpc/xive: Do not skip CPU-less nodes when creating the IPIs")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20210816185711.21563-1-nathan@kernel.org
arch/powerpc/sysdev/xive/common.c