diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-07-17 03:49:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 14:01:07 -0400 |
commit | 5072d5d58ef67bd7131d0be208ad1b6cd0631648 (patch) | |
tree | 71e373849933063f903d78c0bcf1d61ee951c5e2 /include/asm-alpha | |
parent | 0ab7a252a52943786d6d12ad8032266841d68b8e (diff) |
alpha termios.h hadn't been updated
... fortunately, termios and ktermios there are identical, so no
run-time breakage happened.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-alpha')
-rw-r--r-- | include/asm-alpha/termios.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-alpha/termios.h b/include/asm-alpha/termios.h index 39e492c3bfa3..fa13716a11c3 100644 --- a/include/asm-alpha/termios.h +++ b/include/asm-alpha/termios.h | |||
@@ -81,7 +81,7 @@ struct termio { | |||
81 | 81 | ||
82 | #define user_termio_to_kernel_termios(a_termios, u_termio) \ | 82 | #define user_termio_to_kernel_termios(a_termios, u_termio) \ |
83 | ({ \ | 83 | ({ \ |
84 | struct termios *k_termios = (a_termios); \ | 84 | struct ktermios *k_termios = (a_termios); \ |
85 | struct termio k_termio; \ | 85 | struct termio k_termio; \ |
86 | int canon, ret; \ | 86 | int canon, ret; \ |
87 | \ | 87 | \ |
@@ -113,7 +113,7 @@ struct termio { | |||
113 | */ | 113 | */ |
114 | #define kernel_termios_to_user_termio(u_termio, a_termios) \ | 114 | #define kernel_termios_to_user_termio(u_termio, a_termios) \ |
115 | ({ \ | 115 | ({ \ |
116 | struct termios *k_termios = (a_termios); \ | 116 | struct ktermios *k_termios = (a_termios); \ |
117 | struct termio k_termio; \ | 117 | struct termio k_termio; \ |
118 | int canon; \ | 118 | int canon; \ |
119 | \ | 119 | \ |