diff options
author | Thomas Koeller <thomas.koeller@baslerweb.com> | 2007-02-20 16:58:05 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-20 20:10:15 -0500 |
commit | cc79aa9d282b34279731a522d074bfea4833e5b5 (patch) | |
tree | ca694ff300b141956b5fcc99d8db0a7c882f224d | |
parent | 0cba01db647fa87d14aeccac5267aebfeb2fc1d2 (diff) |
[PATCH] 8250: Fix GCC4 signed/unsigned mismatch warning
Signed-off-by: Thomas Koeller <thomas.koeller@baslerweb.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/serial/8250.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/8250.c b/drivers/serial/8250.c index 98ec86185328..c129a0e8e807 100644 --- a/drivers/serial/8250.c +++ b/drivers/serial/8250.c | |||
@@ -1196,7 +1196,7 @@ static void serial8250_enable_ms(struct uart_port *port) | |||
1196 | } | 1196 | } |
1197 | 1197 | ||
1198 | static void | 1198 | static void |
1199 | receive_chars(struct uart_8250_port *up, int *status) | 1199 | receive_chars(struct uart_8250_port *up, unsigned int *status) |
1200 | { | 1200 | { |
1201 | struct tty_struct *tty = up->port.info->tty; | 1201 | struct tty_struct *tty = up->port.info->tty; |
1202 | unsigned char ch, lsr = *status; | 1202 | unsigned char ch, lsr = *status; |