Home | History | Annotate | Download | only in usb

Lines Matching defs:ls

466 	usb_cdc_line_state_t ls;
473 USETDW(ls.dwDTERate, t->c_ospeed);
475 ls.bCharFormat = UCDC_STOP_BIT_2;
477 ls.bCharFormat = UCDC_STOP_BIT_1;
480 ls.bParityType = UCDC_PARITY_ODD;
482 ls.bParityType = UCDC_PARITY_EVEN;
484 ls.bParityType = UCDC_PARITY_NONE;
487 ls.bDataBits = 5;
490 ls.bDataBits = 6;
493 ls.bDataBits = 7;
496 ls.bDataBits = 8;
500 err = umodem_set_line_coding(sc, &ls);
568 int ls;
570 ls = (sc->sc_dtr ? UCDC_LINE_DTR : 0) |
574 USETW(req.wValue, ls);