From: Genjian Zhang Date: Thu, 16 May 2024 11:59:06 +0000 (+0800) Subject: MIPS: ip22-gio: Make ip22_gio_set_64bit() and ip22_gio_init() static X-Git-Tag: v6.11-rc1~95^2~44 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3ee1167a16dfae1f656d52133a72be992cb85047;p=thirdparty%2Fkernel%2Flinux.git MIPS: ip22-gio: Make ip22_gio_set_64bit() and ip22_gio_init() static These functions are used in only one file. Made them static to fix the following build error: arch/mips/sgi-ip22/ip22-gio.c:249:6: error: no previous prototype for ‘ip22_gio_set_64bit’ [-Werror=missing-prototypes] arch/mips/sgi-ip22/ip22-gio.c:398:12: error: no previous prototype for ‘ip22_gio_init’ [-Werror=missing-prototypes] Reported-by: k2ci Signed-off-by: Genjian Zhang Signed-off-by: Thomas Bogendoerfer --- diff --git a/arch/mips/sgi-ip22/ip22-gio.c b/arch/mips/sgi-ip22/ip22-gio.c index a3cdcb2899410..2738325e98dd0 100644 --- a/arch/mips/sgi-ip22/ip22-gio.c +++ b/arch/mips/sgi-ip22/ip22-gio.c @@ -246,7 +246,7 @@ void gio_set_master(struct gio_device *dev) } EXPORT_SYMBOL_GPL(gio_set_master); -void ip22_gio_set_64bit(int slotno) +static void ip22_gio_set_64bit(int slotno) { u32 tmp = sgimc->giopar; @@ -395,7 +395,7 @@ static struct resource gio_bus_resource = { .flags = IORESOURCE_MEM, }; -int __init ip22_gio_init(void) +static int __init ip22_gio_init(void) { unsigned int pbdma __maybe_unused; int ret;