aboutsummaryrefslogtreecommitdiff
path: root/arch/mips/include/asm/setup.h
diff options
context:
space:
mode:
authorArnd Bergmann <[email protected]>2023-12-04 12:57:01 +0100
committerAndrew Morton <[email protected]>2023-12-10 17:21:40 -0800
commitec47b986e53e5617e9ed1c74fc3db04983a2d782 (patch)
tree073d3b92c7bdcbb33f23b4deb17eda7ec65e3492 /arch/mips/include/asm/setup.h
parente021227afb5867738482c2dc0970191772cd0d4e (diff)
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/[email protected] Signed-off-by: Arnd Bergmann <[email protected]> Cc: Stephen Rothwell <[email protected]> Cc: Thomas Bogendoerfer <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
Diffstat (limited to 'arch/mips/include/asm/setup.h')
-rw-r--r--arch/mips/include/asm/setup.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/include/asm/setup.h b/arch/mips/include/asm/setup.h
index 8c56b862fd9c..4dce41138bad 100644
--- a/arch/mips/include/asm/setup.h
+++ b/arch/mips/include/asm/setup.h
@@ -27,5 +27,6 @@ extern unsigned long ebase;
extern unsigned int hwrena;
extern void per_cpu_trap_init(bool);
extern void cpu_cache_init(void);
+extern void tlb_init(void);
#endif /* __SETUP_H */