taglinefilesource code
cprev1897drivers/char/serial.cstruct async_icount cprev, cnow;  /* kernel counter temps */
cprev2014drivers/char/serial.ccprev = info->icount;  /* note the counters on entry */
cprev2024drivers/char/serial.cif (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr && 
cprev2025drivers/char/serial.ccnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
cprev2027drivers/char/serial.cif ( ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
cprev2028drivers/char/serial.c((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
cprev2029drivers/char/serial.c((arg & TIOCM_CD)  && (cnow.dcd != cprev.dcd)) ||
cprev2030drivers/char/serial.c((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)) ) {
cprev2033drivers/char/serial.ccprev = cnow;