Message ID | 20230201080151.2068-2-daniel.starke@siemens.com |
---|---|
State | Superseded |
Headers | show |
Series | [1/3] tty: n_gsm: add keep alive support | expand |
diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c index 98577b54f1fd..118511c1fa37 100644 --- a/drivers/tty/n_gsm.c +++ b/drivers/tty/n_gsm.c @@ -546,6 +546,11 @@ static u8 gsm_encode_modem(const struct gsm_dlci *dlci) modembits |= MDM_IC; if (dlci->modem_tx & TIOCM_CD || dlci->gsm->initiator) modembits |= MDM_DV; + /* special mappings for passive side to operate as UE */ + if (dlci->modem_tx & TIOCM_OUT1) + modembits |= MDM_IC; + if (dlci->modem_tx & TIOCM_OUT2) + modembits |= MDM_DV; return modembits; }