Lines Matching refs:cprev
2021 struct mgsl_icount cprev, cnow; in wait_events() local
2050 cprev = info->icount; in wait_events()
2086 cnow.exithunt == cprev.exithunt && in wait_events()
2087 cnow.rxidle == cprev.rxidle) { in wait_events()
2101 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) + in wait_events()
2102 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) ); in wait_events()
2106 cprev = cnow; in wait_events()
2129 struct mgsl_icount cprev, cnow; in modem_input_wait() local
2134 cprev = info->icount; in modem_input_wait()
2153 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr && in modem_input_wait()
2154 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) { in modem_input_wait()
2160 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) || in modem_input_wait()
2161 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) || in modem_input_wait()
2162 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) || in modem_input_wait()
2163 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) { in modem_input_wait()
2168 cprev = cnow; in modem_input_wait()