Lines Matching refs:modem_tx
143 u32 modem_tx; /* Our outgoing modem lines */ member
455 if (dlci->modem_tx & TIOCM_DTR) in gsm_encode_modem()
457 if (dlci->modem_tx & TIOCM_RTS) in gsm_encode_modem()
459 if (dlci->modem_tx & TIOCM_RI) in gsm_encode_modem()
461 if (dlci->modem_tx & TIOCM_CD || dlci->gsm->initiator) in gsm_encode_modem()
3052 unsigned int modem_tx = dlci->modem_tx; in gsm_dtr_rts() local
3054 modem_tx |= TIOCM_DTR | TIOCM_RTS; in gsm_dtr_rts()
3056 modem_tx &= ~(TIOCM_DTR | TIOCM_RTS); in gsm_dtr_rts()
3057 if (modem_tx != dlci->modem_tx) { in gsm_dtr_rts()
3058 dlci->modem_tx = modem_tx; in gsm_dtr_rts()
3243 unsigned int modem_tx = dlci->modem_tx; in gsmtty_tiocmset() local
3247 modem_tx &= ~clear; in gsmtty_tiocmset()
3248 modem_tx |= set; in gsmtty_tiocmset()
3250 if (modem_tx != dlci->modem_tx) { in gsmtty_tiocmset()
3251 dlci->modem_tx = modem_tx; in gsmtty_tiocmset()
3310 dlci->modem_tx &= ~TIOCM_RTS; in gsmtty_throttle()
3322 dlci->modem_tx |= TIOCM_RTS; in gsmtty_unthrottle()