diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-11-29 10:32:19 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-11-29 10:32:19 -0800 |
commit | 2e824ad59f678a1ff920144fda9b7dd0815fc010 (patch) | |
tree | 616d4c0d4e815493b7e7ff9842793a1b45c66ac9 /drivers | |
parent | f97b8954953ba8e692dbb92d99e26b721f7068cd (diff) | |
parent | a960d5dc71102d33f257cbc26d87b15015586672 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc:
sdio_uart: fix sign of paramter status in sdio_uart_receive_chars()
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mmc/card/sdio_uart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/card/sdio_uart.c b/drivers/mmc/card/sdio_uart.c index d552de68311..eeea84c309e 100644 --- a/drivers/mmc/card/sdio_uart.c +++ b/drivers/mmc/card/sdio_uart.c @@ -386,7 +386,7 @@ static void sdio_uart_stop_rx(struct sdio_uart_port *port) 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; |