x86/ftrace: Move prepare_ftrace_return prototype to header
authorArnd Bergmann <arnd@arndb.de>
Tue, 16 May 2023 19:35:30 +0000 (21:35 +0200)
committerDave Hansen <dave.hansen@linux.intel.com>
Thu, 18 May 2023 18:56:01 +0000 (11:56 -0700)
commit26c3379a6912ab7f5115cea31123a57de8d2ce8a
treeb8fdd945668cb95e32e93570b41c938be484928d
parente31a5c5cfeab70d3554e237daf9e319265cbb411
x86/ftrace: Move prepare_ftrace_return prototype to header

On 32-bit builds, the prepare_ftrace_return() function only has a global
definition, but no prototype before it, which causes a warning:

arch/x86/kernel/ftrace.c:625:6: warning: no previous prototype for ‘prepare_ftrace_return’ [-Wmissing-prototypes]
  625 | void prepare_ftrace_return(unsigned long ip, unsigned long *parent,

Move the prototype that is already needed for some configurations into
a header file where it can be seen unconditionally.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com>
Reviewed-by: Alexander Lobakin <aleksander.lobakin@intel.com>
Link: https://lore.kernel.org/all/20230516193549.544673-2-arnd%40kernel.org
arch/x86/include/asm/ftrace.h
arch/x86/kernel/ftrace.c