diff options
| author | Geert Uytterhoeven <[email protected]> | 2023-09-13 14:08:37 +0000 |
|---|---|---|
| committer | Geert Uytterhoeven <[email protected]> | 2023-10-06 08:03:04 +0000 |
| commit | 88be4a461e6488af6f2bc5a305e0427f969eb274 (patch) | |
| tree | 6f8da53dad9308a6047ac258167b05878d0bae27 | |
| parent | m68k: sun3: Make print_pte() static (diff) | |
| download | kernel-88be4a461e6488af6f2bc5a305e0427f969eb274.tar.gz kernel-88be4a461e6488af6f2bc5a305e0427f969eb274.zip | |
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 <[email protected]>
Acked-by: Arnd Bergmann <[email protected]>
Link: https://lore.kernel.org/r/f35e6376d01b11f21f677cb980093e8410d2c33b.1694613528.git.geert@linux-m68k.org
| -rw-r--r-- | arch/m68k/sun3/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/sun3/config.c b/arch/m68k/sun3/config.c index 6e24920e4195..40796c3e8440 100644 --- a/arch/m68k/sun3/config.c +++ b/arch/m68k/sun3/config.c @@ -199,7 +199,7 @@ static const struct resource sun3_scsi_rsrc[] __initconst = { }, }; -int __init sun3_platform_init(void) +static int __init sun3_platform_init(void) { switch (idprom->id_machtype) { case SM_SUN3 | SM_3_160: |
