Explorar o código

sparc64: fix sparse warning in btext.c

Fix following warning:
btext.c:140:6: warning: symbol 'btext_drawchar' was not declared. Should it be static?

Define the function static as it is only used in this file.

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Sam Ravnborg %!s(int64=11) %!d(string=hai) anos
pai
achega
f1eabec577
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      arch/sparc/kernel/btext.c

+ 1 - 1
arch/sparc/kernel/btext.c

@@ -137,7 +137,7 @@ static void scrollscreen(void)
 }
 #endif /* ndef NO_SCROLL */
 
-void btext_drawchar(char c)
+static void btext_drawchar(char c)
 {
 	int cline = 0;
 #ifdef NO_SCROLL