Skip to content

Commit 88be4a4

Browse files
committed
m68k: sun3: Make sun3_platform_init() static
When building with W=1: arch/m68k/sun3/config.c:201:12: warning: no previous prototype for ‘sun3_platform_init’ [-Wmissing-prototypes] 202 | int __init sun3_platform_init(void) | ^~~~~~~~~~~~~~~~~~ Fix this by making sun3_platform_init() static. There was never a user outside arch/m68k/sun3/config.c. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/f35e6376d01b11f21f677cb980093e8410d2c33b.1694613528.git.geert@linux-m68k.org
1 parent dc52d2d commit 88be4a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/m68k/sun3/config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ static const struct resource sun3_scsi_rsrc[] __initconst = {
199199
},
200200
};
201201

202-
int __init sun3_platform_init(void)
202+
static int __init sun3_platform_init(void)
203203
{
204204
switch (idprom->id_machtype) {
205205
case SM_SUN3 | SM_3_160:

0 commit comments

Comments
 (0)