Lines Matching refs:modem_tx
161 u32 modem_tx; /* Our outgoing modem lines */ member
492 if (dlci->modem_tx & TIOCM_DTR) in gsm_encode_modem()
494 if (dlci->modem_tx & TIOCM_RTS) in gsm_encode_modem()
496 if (dlci->modem_tx & TIOCM_RI) in gsm_encode_modem()
498 if (dlci->modem_tx & TIOCM_CD || dlci->gsm->initiator) in gsm_encode_modem()
3444 unsigned int modem_tx = dlci->modem_tx; in gsm_dtr_rts() local
3446 modem_tx |= TIOCM_DTR | TIOCM_RTS; in gsm_dtr_rts()
3448 modem_tx &= ~(TIOCM_DTR | TIOCM_RTS); in gsm_dtr_rts()
3449 if (modem_tx != dlci->modem_tx) { in gsm_dtr_rts()
3450 dlci->modem_tx = modem_tx; in gsm_dtr_rts()
3635 unsigned int modem_tx = dlci->modem_tx; in gsmtty_tiocmset() local
3639 modem_tx &= ~clear; in gsmtty_tiocmset()
3640 modem_tx |= set; in gsmtty_tiocmset()
3642 if (modem_tx != dlci->modem_tx) { in gsmtty_tiocmset()
3643 dlci->modem_tx = modem_tx; in gsmtty_tiocmset()
3703 dlci->modem_tx &= ~TIOCM_RTS; in gsmtty_throttle()
3715 dlci->modem_tx |= TIOCM_RTS; in gsmtty_unthrottle()