diff options
Diffstat (limited to 'arch/sparc/prom/console_32.c')
-rw-r--r-- | arch/sparc/prom/console_32.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/sparc/prom/console_32.c b/arch/sparc/prom/console_32.c index 5340264b78f5..2ce5acb45f2d 100644 --- a/arch/sparc/prom/console_32.c +++ b/arch/sparc/prom/console_32.c | |||
@@ -19,8 +19,7 @@ extern void restore_current(void); | |||
19 | /* Non blocking get character from console input device, returns -1 | 19 | /* Non blocking get character from console input device, returns -1 |
20 | * if no input was taken. This can be used for polling. | 20 | * if no input was taken. This can be used for polling. |
21 | */ | 21 | */ |
22 | int | 22 | static int prom_nbgetchar(void) |
23 | prom_nbgetchar(void) | ||
24 | { | 23 | { |
25 | static char inc; | 24 | static char inc; |
26 | int i = -1; | 25 | int i = -1; |
@@ -51,8 +50,7 @@ prom_nbgetchar(void) | |||
51 | /* Non blocking put character to console device, returns -1 if | 50 | /* Non blocking put character to console device, returns -1 if |
52 | * unsuccessful. | 51 | * unsuccessful. |
53 | */ | 52 | */ |
54 | int | 53 | static int prom_nbputchar(char c) |
55 | prom_nbputchar(char c) | ||
56 | { | 54 | { |
57 | static char outc; | 55 | static char outc; |
58 | unsigned long flags; | 56 | unsigned long flags; |