Skip to content

Commit e9f72cf

Browse files
committed
m68k: atari: Make ikbd_reset() static
When building with W=1: arch/m68k/atari/atakeyb.c:335:6: warning: no previous prototype for ‘ikbd_reset’ [-Wmissing-prototypes] 335 | void ikbd_reset(void) | ^~~~~~~~~~ Fix this by making ikbd_reset() static. There was never a user outside arch/m68k/atari/atakey.c. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/6babf691fff55f913808ad845e66f60ab00063b2.1694613528.git.geert@linux-m68k.org
1 parent 4ad6950 commit e9f72cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/m68k/atari/atakeyb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ void ikbd_write(const char *str, int len)
332332
}
333333

334334
/* Reset (without touching the clock) */
335-
void ikbd_reset(void)
335+
static void ikbd_reset(void)
336336
{
337337
static const char cmd[2] = { 0x80, 0x01 };
338338

0 commit comments

Comments
 (0)