diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-11-09 00:34:42 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-09 10:55:52 -0500 |
commit | 4448aaf0faafff3f275d15937c28b6346760e028 (patch) | |
tree | d0477d4d0871c94a6eff7761d06b16a682e9ec53 /drivers/s390/char | |
parent | 0fbeb5a45dccd493c35a68a5548e6a9d9882a791 (diff) |
[PATCH] s390: "extern inline" -> "static inline"
"extern inline" -> "static inline"
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/s390/char')
-rw-r--r-- | drivers/s390/char/keyboard.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/s390/char/keyboard.h b/drivers/s390/char/keyboard.h index 3b4da5a9cf79..f7bf45c6bf0d 100644 --- a/drivers/s390/char/keyboard.h +++ b/drivers/s390/char/keyboard.h | |||
@@ -41,14 +41,14 @@ int kbd_ioctl(struct kbd_data *, struct file *, unsigned int, unsigned long); | |||
41 | /* | 41 | /* |
42 | * Helper Functions. | 42 | * Helper Functions. |
43 | */ | 43 | */ |
44 | extern inline void | 44 | static inline void |
45 | kbd_put_queue(struct tty_struct *tty, int ch) | 45 | kbd_put_queue(struct tty_struct *tty, int ch) |
46 | { | 46 | { |
47 | tty_insert_flip_char(tty, ch, 0); | 47 | tty_insert_flip_char(tty, ch, 0); |
48 | tty_schedule_flip(tty); | 48 | tty_schedule_flip(tty); |
49 | } | 49 | } |
50 | 50 | ||
51 | extern inline void | 51 | static inline void |
52 | kbd_puts_queue(struct tty_struct *tty, char *cp) | 52 | kbd_puts_queue(struct tty_struct *tty, char *cp) |
53 | { | 53 | { |
54 | while (*cp) | 54 | while (*cp) |