Re: [PATCH] 8250.c: Fix to make 16C950 UARTs work

From: Stefan Smietanowski
Date: Thu Sep 08 2005 - 20:51:14 EST


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Mathias Adam wrote:
> Currently serial8250_set_termios() refuses to program a baud rate larger
> than uartclk/16. However the 16C950 supports baud rates up to uartclk/4.
> This worked already with Linux 2.4 so the biggest part of this patch was
> simply taken from there and adapted to 2.6.
> - unsigned int baud, quot;
> + unsigned int baud, quot, max_baud;
^^^^^^^^
> - baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
> + MAX_baud = (up->port.type == PORT_16C950 ? port->uartclk/4 : port->uartclk/16);
^^^^^^^^

Did you even compile test this?

// Stefan
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (MingW32)

iD8DBQFDIOxFBrn2kJu9P78RAnG3AJ9EJKl6q4Q4+jXRdMifvmOEdO+HewCfUPd8
T2qQREDAgUq2C7j9yfaPemQ=
=hGK0
-----END PGP SIGNATURE-----
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/