| 824 | ----------------------------------------------------------*/ |
| 825 | |
| 826 | void cfmakeraw(struct termios *s_termios) |
| 827 | { |
| 828 | ENTER("cfmakeraw"); |
| 829 | s_termios->c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP |
| 830 | | INLCR | IGNCR | ICRNL | IXON); |
| 831 | s_termios->c_oflag &= ~OPOST; |
| 832 | s_termios->c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN); |
| 833 | s_termios->c_cflag &= ~(CSIZE | PARENB); |
| 834 | s_termios->c_cflag |= CS8; |
| 835 | LEAVE("cfmakeraw"); |
| 836 | } |
| 837 | |
| 838 | /*---------------------------------------------------------- |
| 839 | init_serial_struct() |
no outgoing calls
no test coverage detected