1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-11 14:10:34 +00:00

Use 115200 and not 9600 as the initial baudrate. This speeds up

detection of the FIFO size. Especially for large FIFOs.
This commit is contained in:
Marcel Moolenaar 2006-04-27 05:43:10 +00:00
parent 897f1917a4
commit d902fb71da
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=158069

View File

@ -611,7 +611,7 @@ ns8250_bus_probe(struct uart_softc *sc)
mcr = MCR_IE;
if (sc->sc_sysdev == NULL) {
/* By using ns8250_init() we also set DTR and RTS. */
ns8250_init(bas, 9600, 8, 1, UART_PARITY_NONE);
ns8250_init(bas, 115200, 8, 1, UART_PARITY_NONE);
} else
mcr |= MCR_DTR | MCR_RTS;