Home | History | Annotate | Download | only in usb

Lines Matching defs:sc_lcr

89 	uint16_t		sc_lcr;		/* state for DTR/RTS */
262 if (onoff && (sc->sc_lcr & UCDC_LINE_DTR))
264 if (!onoff && !(sc->sc_lcr & UCDC_LINE_DTR))
270 sc->sc_lcr = onoff ? sc->sc_lcr | UCDC_LINE_DTR
271 : sc->sc_lcr & ~UCDC_LINE_DTR;
272 USETW(req.wValue, sc->sc_lcr);
296 if (onoff && (sc->sc_lcr & UCDC_LINE_RTS)) return;
297 if (!onoff && !(sc->sc_lcr & UCDC_LINE_RTS)) return;
301 sc->sc_lcr = onoff ? sc->sc_lcr | UCDC_LINE_RTS
302 : sc->sc_lcr & ~UCDC_LINE_RTS;
303 USETW(req.wValue, sc->sc_lcr);