powerpc/fadump: Fix section mismatch warning
authorMichael Ellerman <mpe@ellerman.id.au>
Thu, 16 May 2024 12:14:44 +0000 (22:14 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 16 May 2024 13:26:44 +0000 (23:26 +1000)
commit61700f816e6f58f6b1aaa881a69a784d146e30f0
treee876fd2fd667896eec142a128bccac334578a737
parente789d4499abdb488dd9cabce4f95c74dac6bcbe5
powerpc/fadump: Fix section mismatch warning

With some compilers/configs fadump_setup_param_area() isn't inlined into
its caller (which is __init), leading to a section mismatch warning:

  WARNING: modpost: vmlinux: section mismatch in reference:
  fadump_setup_param_area+0x200 (section: .text.fadump_setup_param_area)
  -> memblock_phys_alloc_range (section: .init.text)

Fix it by adding an __init annotation.

Fixes: 683eab94da75 ("powerpc/fadump: setup additional parameters for dump capture kernel")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Closes: https://lore.kernel.org/all/20240515163708.3380c4d1@canb.auug.org.au/
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/all/202405140922.oucLOx4Y-lkp@intel.com/
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20240516132631.347956-1-mpe@ellerman.id.au
arch/powerpc/kernel/fadump.c