The patch titled
     sdio_uart: fix sign of paramter status in sdio_uart_receive_chars()
has been removed from the -mm tree.  Its filename was
     sdio_uart-fix-sign-of-paramter-status-in-sdio_uart_receive_chars.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
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

origin.patch
git-arm.patch
fbmon-remove-unnecessary-local-variable.patch
fbmon-cleanup-trailing-whitespaces.patch
fbmon-cleanup-trailing-whitespaces-checkpatch-fixes.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

Reply via email to