MIPS: BCM47XX: Declare early_tlb_init() static
authorYongzhen Zhang <zhangyongzhen@kylinos.cn>
Fri, 15 Mar 2024 02:52:35 +0000 (10:52 +0800)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Mon, 15 Apr 2024 08:21:20 +0000 (10:21 +0200)
commitd18419cd66835c29ac732624324b99b43f4cff1c
treef4336abd7fa0e14a68bd122a81bd49ed98fbaa56
parent34059321f4cf541d69e733cd02882d62c489bb77
MIPS: BCM47XX: Declare early_tlb_init() static

early_tlb_init() was local to file but not declared static,
leading to error:

arch/mips/bcm47xx/prom.c:126:6: error: no previous prototype for ‘early_tlb_init’ [-Werror=missing-prototypes]
  126 | void early_tlb_init(void)
      |      ^~~~~~~~~~~~~~

Signed-off-by: Yongzhen Zhang <zhangyongzhen@kylinos.cn>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/bcm47xx/prom.c