Home
last modified time | relevance | path

Searched refs:_I_FLAG (Results 1 – 2 of 2) sorted by relevance

/linux-4.4.14/include/linux/
Dtty.h122 #define _I_FLAG(tty, f) ((tty)->termios.c_iflag & (f)) macro
127 #define I_IGNBRK(tty) _I_FLAG((tty), IGNBRK)
128 #define I_BRKINT(tty) _I_FLAG((tty), BRKINT)
129 #define I_IGNPAR(tty) _I_FLAG((tty), IGNPAR)
130 #define I_PARMRK(tty) _I_FLAG((tty), PARMRK)
131 #define I_INPCK(tty) _I_FLAG((tty), INPCK)
132 #define I_ISTRIP(tty) _I_FLAG((tty), ISTRIP)
133 #define I_INLCR(tty) _I_FLAG((tty), INLCR)
134 #define I_IGNCR(tty) _I_FLAG((tty), IGNCR)
135 #define I_ICRNL(tty) _I_FLAG((tty), ICRNL)
[all …]
/linux-4.4.14/drivers/staging/fwserial/
Dfwserial.c967 if (_I_FLAG(tty, BRKINT | PARMRK)) in set_termios()