2.4.36-stable kernel tree
Revision | 709946f961dbbd2b18d2d1e0678391d03934f949 (tree) |
---|---|
Zeit | 2007-02-25 16:41:26 |
Autor | Mariusz Kozlowski <m.kozlowski@tuxl...> |
Commiter | Willy Tarreau |
[PATCH] serial_amba parenthesis fix
Hello,
This patch adds missing parenthesis in ambauart_modem_status() code.
Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
@@ -481,7 +481,7 @@ static void ambauart_modem_status(struct amba_info *info) | ||
481 | 481 | icount->dcd++; |
482 | 482 | #ifdef CONFIG_HARD_PPS |
483 | 483 | if ((info->flags & ASYNC_HARDPPS_CD) && |
484 | - (status & AMBA_UARTFR_DCD) | |
484 | + (status & AMBA_UARTFR_DCD)) | |
485 | 485 | hardpps(); |
486 | 486 | #endif |
487 | 487 | if (info->flags & ASYNC_CHECK_CD) { |