Lines Matching refs:modem_tx
172 u32 modem_tx; /* Our outgoing modem lines */ member
546 if (dlci->modem_tx & TIOCM_DTR) in gsm_encode_modem()
548 if (dlci->modem_tx & TIOCM_RTS) in gsm_encode_modem()
550 if (dlci->modem_tx & TIOCM_RI) in gsm_encode_modem()
552 if (dlci->modem_tx & TIOCM_CD || dlci->gsm->initiator) in gsm_encode_modem()
555 if (dlci->modem_tx & TIOCM_OUT1) in gsm_encode_modem()
557 if (dlci->modem_tx & TIOCM_OUT2) in gsm_encode_modem()
4176 unsigned int modem_tx = dlci->modem_tx; in gsm_dtr_rts() local
4178 modem_tx |= TIOCM_DTR | TIOCM_RTS; in gsm_dtr_rts()
4180 modem_tx &= ~(TIOCM_DTR | TIOCM_RTS); in gsm_dtr_rts()
4181 if (modem_tx != dlci->modem_tx) { in gsm_dtr_rts()
4182 dlci->modem_tx = modem_tx; in gsm_dtr_rts()
4370 unsigned int modem_tx = dlci->modem_tx; in gsmtty_tiocmset() local
4374 modem_tx &= ~clear; in gsmtty_tiocmset()
4375 modem_tx |= set; in gsmtty_tiocmset()
4377 if (modem_tx != dlci->modem_tx) { in gsmtty_tiocmset()
4378 dlci->modem_tx = modem_tx; in gsmtty_tiocmset()
4458 dlci->modem_tx &= ~TIOCM_RTS; in gsmtty_throttle()
4470 dlci->modem_tx |= TIOCM_RTS; in gsmtty_unthrottle()