Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5072d5d5 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds
Browse files

alpha termios.h hadn't been updated



... fortunately, termios and ktermios there are identical, so no
run-time breakage happened.

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 0ab7a252
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ struct 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;							\
	int canon, ret;								\
										\
@@ -113,7 +113,7 @@ struct termio {
 */
#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;						\
	int canon;							\
									\