mips: smp: fix setup_profiling_timer() prototype
authorArnd Bergmann <arnd@arndb.de>
Mon, 4 Dec 2023 11:57:09 +0000 (12:57 +0100)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 11 Dec 2023 01:21:42 +0000 (17:21 -0800)
commitd1f4b2b875e49dbbc9114bf340ee6871a892d014
tree3a06630ef97196b26aaf09ee5f96cbebbb723462
parentb4fc7a3c37c3cd053f3ccf0553d7837e9d3e810b
mips: smp: fix setup_profiling_timer() prototype

The function is unconditionally defined in smp.c but is conditionally
declared in a header that is not included here.

arch/mips/kernel/smp.c:473:5: error: no previous prototype for 'setup_profiling_timer' [-Werror=missing-prototypes]

Add the missing #include and #ifdef to match the declaration.

Link: https://lkml.kernel.org/r/20231204115710.2247097-20-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Stephen Rothwell <sfr@rothwell.id.au>
Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/mips/kernel/smp.c