From: Andrew Morton <akpm@linux-foundation.org>
To: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] serial: speed setup failure reporting
Date: Wed, 9 Jan 2008 22:23:52 -0800 [thread overview]
Message-ID: <20080109222352.c112b4eb.akpm@linux-foundation.org> (raw)
In-Reply-To: <20080103165507.3fe5b7a4@lxorguk.ukuu.org.uk>
On Thu, 3 Jan 2008 16:55:07 +0000 Alan Cox <alan@lxorguk.ukuu.org.uk> wrote:
> Invalid speeds are forced to 9600. Update the code for this to encode new
> style baud rates properly.
>
> Signed-off-by: Alan Cox <alan@redhat.com>
>
> diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.24-rc6-mm1/drivers/serial/serial_core.c linux-2.6.24-rc6-mm1/drivers/serial/serial_core.c
> --- linux.vanilla-2.6.24-rc6-mm1/drivers/serial/serial_core.c 2008-01-02 16:04:23.000000000 +0000
> +++ linux-2.6.24-rc6-mm1/drivers/serial/serial_core.c 2008-01-02 16:17:50.000000000 +0000
> @@ -372,7 +372,8 @@
> */
> termios->c_cflag &= ~CBAUD;
> if (old) {
> - termios->c_cflag |= old->c_cflag & CBAUD;
> + baud = tty_termios_baud_rate(old);
> + tty_termios_encode_baud_rate(termios, baud, baud);
> old = NULL;
> continue;
> }
> @@ -381,7 +382,7 @@
> * As a last resort, if the quotient is zero,
> * default to 9600 bps
> */
> - termios->c_cflag |= B9600;
> + tty_termios_encode_baud_rate(termios, 9600, 9600);
> }
>
> return 0;
Is this a 2.6.24 thing?
next prev parent reply other threads:[~2008-01-10 6:23 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-03 16:55 Alan Cox
2008-01-10 6:23 ` Andrew Morton [this message]
2008-01-10 20:40 ` Alan Cox
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080109222352.c112b4eb.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome