Lines Matching refs:pin_state
100 u8 pin_state; member
529 buf->pin_state = 0x5b; /* RTS, CTS, DSR, DTR, RI, DCD */ in oti6858_open()
615 unsigned pin_state; in oti6858_tiocmget() local
619 pin_state = priv->status.pin_state & PIN_MASK; in oti6858_tiocmget()
623 if ((pin_state & PIN_RTS) != 0) in oti6858_tiocmget()
625 if ((pin_state & PIN_CTS) != 0) in oti6858_tiocmget()
627 if ((pin_state & PIN_DSR) != 0) in oti6858_tiocmget()
629 if ((pin_state & PIN_DTR) != 0) in oti6858_tiocmget()
631 if ((pin_state & PIN_RI) != 0) in oti6858_tiocmget()
633 if ((pin_state & PIN_DCD) != 0) in oti6858_tiocmget()
698 u8 delta = xs->pin_state ^ priv->status.pin_state; in oti6858_read_int_callback()