Home
last modified time | relevance | path

Searched refs:cnow (Results 1 – 1 of 1) sorted by relevance

/linux/drivers/tty/
H A Dnozomi.c1677 const struct async_icount cnow = port->tty_icount; in ntty_cflags_changed() local
1680 ret = ((flags & TIOCM_RNG) && (cnow.rng != cprev->rng)) in ntty_cflags_changed()
1681 || ((flags & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) in ntty_cflags_changed()
1682 || ((flags & TIOCM_CD) && (cnow.dcd != cprev->dcd)) in ntty_cflags_changed()
1683 || ((flags & TIOCM_CTS) && (cnow.cts != cprev->cts)); in ntty_cflags_changed()
1685 *cprev = cnow; in ntty_cflags_changed()
1694 const struct async_icount cnow = port->tty_icount; in ntty_tiocgicount() local
1696 icount->cts = cnow.cts; in ntty_tiocgicount()
1697 icount->dsr = cnow.dsr; in ntty_tiocgicount()
1698 icount->rng = cnow.rng; in ntty_tiocgicount()
[all …]