From: Jiri Slaby <jslaby@suse.cz>
To: Jonas Gorski <jogo@openwrt.org>, linux-serial@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Maxime Bizon <mbizon@freebox.fr>,
Florian Fainelli <florian@openwrt.org>,
Kevin Cernekee <cernekee@gmail.com>
Subject: Re: [PATCH] serial: bcm63xx_uart: fix compilation after "TTY: switch tty_insert_flip_char"
Date: Thu, 28 Feb 2013 20:53:31 +0100 [thread overview]
Message-ID: <512FB5BB.4060905@suse.cz> (raw)
In-Reply-To: <1361711319-15825-1-git-send-email-jogo@openwrt.org>
On 02/24/2013 02:08 PM, Jonas Gorski wrote:
> 92a19f9cec9a80ad93c06e115822deb729e2c6ad introduced a local variable
> with the same name as the argument to bcm_uart_do_rx, breaking
> compilation. Fix this by renaming the new variable and its uses where
> expected.
>
> Signed-off-by: Jonas Gorski <jogo@openwrt.org>
Ok, I missed that one. Added this to my tty-build script now:
make O=../a/cross/mips-bcm63xx/ ARCH=mips CROSS_COMPILE=mips-linux- -j5
drivers/tty/serial/bcm63xx_uart.o
Thanks for fixing.
> ---
> Based on git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
>
> drivers/tty/serial/bcm63xx_uart.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/tty/serial/bcm63xx_uart.c b/drivers/tty/serial/bcm63xx_uart.c
> index 719594e..52a3ecd 100644
> --- a/drivers/tty/serial/bcm63xx_uart.c
> +++ b/drivers/tty/serial/bcm63xx_uart.c
> @@ -235,7 +235,7 @@ static const char *bcm_uart_type(struct uart_port *port)
> */
> static void bcm_uart_do_rx(struct uart_port *port)
> {
> - struct tty_port *port = &port->state->port;
> + struct tty_port *tty_port = &port->state->port;
> unsigned int max_count;
>
> /* limit number of char read in interrupt, should not be
> @@ -260,7 +260,7 @@ static void bcm_uart_do_rx(struct uart_port *port)
> bcm_uart_writel(port, val, UART_CTL_REG);
>
> port->icount.overrun++;
> - tty_insert_flip_char(port, 0, TTY_OVERRUN);
> + tty_insert_flip_char(tty_port, 0, TTY_OVERRUN);
> }
>
> if (!(iestat & UART_IR_STAT(UART_IR_RXNOTEMPTY)))
> @@ -299,11 +299,11 @@ static void bcm_uart_do_rx(struct uart_port *port)
>
>
> if ((cstat & port->ignore_status_mask) == 0)
> - tty_insert_flip_char(port, c, flag);
> + tty_insert_flip_char(tty_port, c, flag);
>
> } while (--max_count);
>
> - tty_flip_buffer_push(port);
> + tty_flip_buffer_push(tty_port);
> }
>
> /*
>
--
js
suse labs
prev parent reply other threads:[~2013-02-28 19:53 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-24 13:08 [PATCH] serial: bcm63xx_uart: fix compilation after "TTY: switch tty_insert_flip_char" Jonas Gorski
2013-02-28 19:53 ` Jiri Slaby [this message]
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=512FB5BB.4060905@suse.cz \
--to=jslaby@suse.cz \
--cc=cernekee@gmail.com \
--cc=florian@openwrt.org \
--cc=gregkh@linuxfoundation.org \
--cc=jogo@openwrt.org \
--cc=linux-serial@vger.kernel.org \
--cc=mbizon@freebox.fr \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.