Home | History | Annotate | Download | only in usb

Lines Matching defs:baud

676 	uint32_t baud;
714 baud = t->c_ispeed;
715 DPRINTF(("ucycomparam: baud=%d\n", baud));
753 err = ucycom_configure(sc, baud, cfg);
905 ucycom_configure(struct ucycom_softc *sc, uint32_t baud, uint8_t cfg)
910 switch (baud) {
921 * Stock chips only support standard baud rates in the 600 - 57600
933 DPRINTF(("ucycom_configure: setting %d baud, %d-%c-%d (%d)\n", baud,
939 report[0] = baud & 0xff;
940 report[1] = (baud >> 8) & 0xff;
941 report[2] = (baud >> 16) & 0xff;
942 report[3] = (baud >> 24) & 0xff;
950 sc->sc_baud = baud;
1136 int err, cfg, baud;
1146 baud = (report[3] << 24) + (report[2] << 16) + (report[1] << 8) +
1148 DPRINTF(("ucycom_get_cfg: device reports %d baud, %d-%c-%d (%d)\n",
1149 baud, 5 + (cfg & UCYCOM_DATA_MASK),