powerpc/powermac: Fix unused function warning
authorMichael Ellerman <mpe@ellerman.id.au>
Mon, 21 Aug 2023 14:09:49 +0000 (00:09 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 24 Aug 2023 22:39:29 +0000 (08:39 +1000)
commit1eafbd8764b10798934344bd40395b27cec63145
treed92ed006eba647fe6bd250b9aa6e0dad714fdaa1
parenteac030b22ea12cdfcbb2e941c21c03964403c63f
powerpc/powermac: Fix unused function warning

Clang reports:
  arch/powerpc/platforms/powermac/feature.c:137:19: error: unused function 'simple_feature_tweak'

It's only used inside the #ifndef CONFIG_PPC64 block, so move it in
there to fix the warning. While at it drop the inline, the compiler will
decide whether it should be inlined or not.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202308181501.AR5HMDWC-lkp@intel.com/
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20230821140949.491881-1-mpe@ellerman.id.au
arch/powerpc/platforms/powermac/feature.c