Lines Matching refs:pin_state
103 u8 pin_state; member
532 buf->pin_state = 0x5b; /* RTS, CTS, DSR, DTR, RI, DCD */ in oti6858_open()
618 unsigned pin_state; in oti6858_tiocmget() local
622 pin_state = priv->status.pin_state & PIN_MASK; in oti6858_tiocmget()
626 if ((pin_state & PIN_RTS) != 0) in oti6858_tiocmget()
628 if ((pin_state & PIN_CTS) != 0) in oti6858_tiocmget()
630 if ((pin_state & PIN_DSR) != 0) in oti6858_tiocmget()
632 if ((pin_state & PIN_DTR) != 0) in oti6858_tiocmget()
634 if ((pin_state & PIN_RI) != 0) in oti6858_tiocmget()
636 if ((pin_state & PIN_DCD) != 0) in oti6858_tiocmget()
701 u8 delta = xs->pin_state ^ priv->status.pin_state; in oti6858_read_int_callback()