Lines Matching refs:baudrate
1238 __u32 baudrate;
1269 static int calc_baud_rate_divisor(struct usb_serial_port *port, int baudrate, int *divisor)
1277 dev_dbg(&port->dev, "%s - %d\n", __func__, baudrate);
1280 if (divisor_table[i].baudrate == baudrate) {
1288 if (baudrate > 75 && baudrate < 230400) {
1290 custom = (__u16)(230400L / baudrate);
1293 round1 = (__u16)(2304000L / baudrate);
1299 dev_dbg(&port->dev, "Baud %d = %d\n", baudrate, custom);
1313 int baudrate)
1328 dev_dbg(&port->dev, "%s - baud = %d\n", __func__, baudrate);
1331 status = calc_baud_rate_divisor(port, baudrate, &divisor);