The patch titled 8250: Fix GCC4 signed/unsigned mismatch warning has been added to the -mm tree. Its filename is 8250-fix-gcc4-signed-unsigned-mismatch-warning.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: 8250: Fix GCC4 signed/unsigned mismatch warning From: Thomas Koeller <thomas.koeller@xxxxxxxxxxxxx> Signed-off-by: Thomas Koeller <thomas.koeller@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/serial/8250.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/serial/8250.c~8250-fix-gcc4-signed-unsigned-mismatch-warning drivers/serial/8250.c --- a/drivers/serial/8250.c~8250-fix-gcc4-signed-unsigned-mismatch-warning +++ a/drivers/serial/8250.c @@ -1196,7 +1196,7 @@ static void serial8250_enable_ms(struct } static void -receive_chars(struct uart_8250_port *up, int *status) +receive_chars(struct uart_8250_port *up, unsigned int *status) { struct tty_struct *tty = up->port.info->tty; unsigned char ch, lsr = *status; _ Patches currently in -mm which might be from thomas.koeller@xxxxxxxxxxxxx are 8250-fix-gcc4-signed-unsigned-mismatch-warning.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html