Hello,
This patch adds missing parenthesis in ambauart_modem_status() code.
Signed-off-by: Mariusz Kozlowski <[EMAIL PROTECTED]>
drivers/char/serial_amba.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- linux-2.4.34-pre6-a/drivers/char/serial_amba.c 2005-01-19
15:09:50.000000000 +0100
+++ linux-2.4.34-pre6-b/drivers/char/serial_amba.c 2006-12-01
12:18:18.000000000 +0100
@@ -481,7 +481,7 @@ static void ambauart_modem_status(struct
icount->dcd++;
#ifdef CONFIG_HARD_PPS
if ((info->flags & ASYNC_HARDPPS_CD) &&
- (status & AMBA_UARTFR_DCD)
+ (status & AMBA_UARTFR_DCD))
hardpps();
#endif
if (info->flags & ASYNC_CHECK_CD) {
--
Regards,
Mariusz Kozlowski
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/