• Home
  • Raw
  • Download

Lines Matching refs:c_cflag

189 			if (info->port.tty->termios->c_cflag & CBAUD)  in uart_startup()
234 if (!tty || (tty->termios->c_cflag & HUPCL)) in uart_shutdown()
382 termios->c_cflag &= ~CBAUD; in uart_get_baud_rate()
450 if (termios->c_cflag & CRTSCTS) in uart_change_speed()
455 if (termios->c_cflag & CLOCAL) in uart_change_speed()
616 if (tty->termios->c_cflag & CRTSCTS) in uart_throttle()
632 if (tty->termios->c_cflag & CRTSCTS) in uart_unthrottle()
1190 unsigned int cflag = tty->termios->c_cflag; in uart_set_termios()
1200 if ((cflag ^ old_termios->c_cflag) == 0 && in uart_set_termios()
1210 if ((old_termios->c_cflag & CBAUD) && !(cflag & CBAUD)) in uart_set_termios()
1214 if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) { in uart_set_termios()
1223 if ((old_termios->c_cflag & CRTSCTS) && !(cflag & CRTSCTS)) { in uart_set_termios()
1231 if (!(old_termios->c_cflag & CRTSCTS) && (cflag & CRTSCTS)) { in uart_set_termios()
1246 if (!(old_termios->c_cflag & CLOCAL) && in uart_set_termios()
1247 (tty->termios->c_cflag & CLOCAL)) in uart_set_termios()
1446 tty->termios->c_cflag = port->cons->cflag; in uart_update_termios()
1464 if (tty->termios->c_cflag & CBAUD) in uart_update_termios()
1510 (info->port.tty->termios->c_cflag & CLOCAL) || in uart_block_til_ready()
1519 if (info->port.tty->termios->c_cflag & CBAUD) in uart_block_til_ready()
1919 termios.c_cflag = CREAD | HUPCL | CLOCAL; in uart_set_options()
1928 termios.c_cflag |= baud_rates[i].cflag; in uart_set_options()
1931 termios.c_cflag |= CS7; in uart_set_options()
1933 termios.c_cflag |= CS8; in uart_set_options()
1937 termios.c_cflag |= PARODD; in uart_set_options()
1940 termios.c_cflag |= PARENB; in uart_set_options()
1945 termios.c_cflag |= CRTSCTS; in uart_set_options()
1959 co->cflag = termios.c_cflag; in uart_set_options()
2089 termios.c_cflag = port->cons->cflag; in uart_resume_port()
2094 if (state->info.port.tty && termios.c_cflag == 0) in uart_resume_port()
2359 normal->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL; in uart_register_driver()