The patch titled
sdio_uart: fix sign of paramter status in sdio_uart_receive_chars()
has been added to the -mm tree. Its filename is
sdio_uart-fix-sign-of-paramter-status-in-sdio_uart_receive_chars.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: sdio_uart: fix sign of paramter status in sdio_uart_receive_chars()
From: Andre Haupt <[EMAIL PROTECTED]>
The status paramter should be unsigned. This also fixes a sparse warning
about different signedness. Only compile tested, because i do not have the
hardware.
Signed-off-by: Andre Haupt <[EMAIL PROTECTED]>
Acked-by: Nicolas Pitre <[EMAIL PROTECTED]>
Cc: Pierre Ossman <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/mmc/card/sdio_uart.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN
drivers/mmc/card/sdio_uart.c~sdio_uart-fix-sign-of-paramter-status-in-sdio_uart_receive_chars
drivers/mmc/card/sdio_uart.c
---
a/drivers/mmc/card/sdio_uart.c~sdio_uart-fix-sign-of-paramter-status-in-sdio_uart_receive_chars
+++ a/drivers/mmc/card/sdio_uart.c
@@ -386,7 +386,7 @@ static void sdio_uart_stop_rx(struct sdi
sdio_out(port, UART_IER, port->ier);
}
-static void sdio_uart_receive_chars(struct sdio_uart_port *port, int *status)
+static void sdio_uart_receive_chars(struct sdio_uart_port *port, unsigned int
*status)
{
struct tty_struct *tty = port->tty;
unsigned int ch, flag;
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-arm.patch
sdio_uart-fix-sign-of-paramter-status-in-sdio_uart_receive_chars.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html