MIPS: pci-rt2880: make pcibios_init() static
authorMieczyslaw Nalewaj <namiltd@yahoo.com>
Wed, 18 Jun 2025 15:40:26 +0000 (23:40 +0800)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Wed, 2 Jul 2025 11:29:34 +0000 (13:29 +0200)
commitde94259d064814b7eacd6d1f4b26e934eed02590
tree294b82b79789522f4b7e36efb3e57311362705b2
parentf13e645e15f1a4a33f0709844dac1a962b335b16
MIPS: pci-rt2880: make pcibios_init() static

This function is only used in the current source file. Mark it as
static to fix the compilation error:

arch/mips/pci/pci-rt2880.c:267:12: error: no previous prototype for 'pcibios_init' [-Werror=missing-prototypes]
  267 | int __init pcibios_init(void)
      |            ^~~~~~~~~~~~

Signed-off-by: Mieczyslaw Nalewaj <namiltd@yahoo.com>
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/pci/pci-rt2880.c