Lines Matching refs:baud
15 * ser12: This is a very simple 1200 baud AFSK modem. The modem consists only
27 * hsk: This is a 4800 baud FSK modem, designed for TNC use. It works fine
37 * '#' denotes the baud rate / 100, eg. ser12* is '1200 baud, soft DCD'
39 * baud baud rate (between 300 and 4800)
115 unsigned int baud, baud_us, baud_arbdiv, baud_uartdiv, baud_dcdtimeout;
388 if (bc->baud < 300 || bc->baud > 4800) {
399 bc->hdrv.par.bitrate = bc->baud;
400 bc->baud_us = 1000000/bc->baud;
401 bc->baud_uartdiv = (115200/8)/bc->baud;
416 * the baud rate is set to produce 100 ints/sec
418 * during transmit to baud ints/sec to run
433 printk(KERN_INFO "%s: ser_fdx at iobase 0x%lx irq %u baud %u uart %s\n",
434 bc_drvname, dev->base_addr, dev->irq, bc->baud, uart_str[u]);
482 unsigned int baud;
485 baud = simple_strtoul(modestr+3, NULL, 10);
486 if (baud >= 3 && baud <= 48)
487 bc->baud = baud*100;
519 sprintf(hi->data.modename, "ser%u", bc->baud / 100);
572 static int baud[NR_PORTS] = { [0 ... NR_PORTS-1] = 1200 };
580 module_param_array(baud, int, NULL, 0);
581 MODULE_PARM_DESC(baud, "baycom baud rate (300 to 4800)");
619 bc->baud = baud[i];
652 * '#' denotes the baud rate / 100, eg. ser12* is '1200 baud, soft DCD'
669 baud[nr_dev] = ints[3];