mips: fix tlb_init() prototype
authorArnd Bergmann <arnd@arndb.de>
Mon, 4 Dec 2023 11:57:01 +0000 (12:57 +0100)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 11 Dec 2023 01:21:40 +0000 (17:21 -0800)
commitec47b986e53e5617e9ed1c74fc3db04983a2d782
tree073d3b92c7bdcbb33f23b4deb17eda7ec65e3492
parente021227afb5867738482c2dc0970191772cd0d4e
mips: fix tlb_init() prototype

There are two definitions for tlb_init(), but no global declaration:

arch/mips/mm/tlb-r4k.c:552:6: error: no previous prototype for 'tlb_init' [-Werror=missing-prototypes]
arch/mips/mm/tlb-r3k.c:244:6: error: no previous prototype for 'tlb_init' [-Werror=missing-prototypes]

Move the declaration to asm/setup.h and included it as needed.

Link: https://lkml.kernel.org/r/20231204115710.2247097-12-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/include/asm/setup.h
arch/mips/kernel/traps.c
arch/mips/mm/tlb-r3k.c
arch/mips/mm/tlb-r4k.c