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>
This commit is contained in:
Al Viro 2007-07-17 08:49:35 +01:00 committed by Linus Torvalds
parent 0ab7a252a5
commit 5072d5d58e

View File

@ -81,7 +81,7 @@ struct termio {
#define user_termio_to_kernel_termios(a_termios, u_termio) \ #define user_termio_to_kernel_termios(a_termios, u_termio) \
({ \ ({ \
struct termios *k_termios = (a_termios); \ struct ktermios *k_termios = (a_termios); \
struct termio k_termio; \ struct termio k_termio; \
int canon, ret; \ int canon, ret; \
\ \
@ -113,7 +113,7 @@ struct termio {
*/ */
#define kernel_termios_to_user_termio(u_termio, a_termios) \ #define kernel_termios_to_user_termio(u_termio, a_termios) \
({ \ ({ \
struct termios *k_termios = (a_termios); \ struct ktermios *k_termios = (a_termios); \
struct termio k_termio; \ struct termio k_termio; \
int canon; \ int canon; \
\ \