Home | History | Annotate | Download | only in asm-arm

Lines Matching full:termios

73  * Translate a "termio" structure into a "termios". Ugh.
75 #define SET_LOW_TERMIOS_BITS(termios, termio, x) { \
78 *(unsigned short *) &(termios)->x = __tmp; \
81 #define user_termio_to_kernel_termios(termios, termio) \
83 SET_LOW_TERMIOS_BITS(termios, termio, c_iflag); \
84 SET_LOW_TERMIOS_BITS(termios, termio, c_oflag); \
85 SET_LOW_TERMIOS_BITS(termios, termio, c_cflag); \
86 SET_LOW_TERMIOS_BITS(termios, termio, c_lflag); \
87 copy_from_user((termios)->c_cc, (termio)->c_cc, NCC); \
91 * Translate a "termios" structure into a "termio". Ugh.
93 #define kernel_termios_to_user_termio(termio, termios) \
95 put_user((termios)->c_iflag, &(termio)->c_iflag); \
96 put_user((termios)->c_oflag, &(termio)->c_oflag); \
97 put_user((termios)->c_cflag, &(termio)->c_cflag); \
98 put_user((termios)->c_lflag, &(termio)->c_lflag); \
99 put_user((termios)->c_line, &(termio)->c_line); \
100 copy_to_user((termio)->c_cc, (termios)->c_cc, NCC); \
103 #define user_termios_to_kernel_termios(k, u) copy_from_user(k, u, sizeof(struct termios))
104 #define kernel_termios_to_user_termios(u, k) copy_to_user(u, k, sizeof(struct termios))