[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20081105022353.7CB0.KOSAKI.MOTOHIRO@jp.fujitsu.com>
Date: Wed, 5 Nov 2008 02:26:00 +0900 (JST)
From: KOSAKI Motohiro <kosaki.motohiro@...fujitsu.com>
To: linux-serial@...r.kernel.org, LKML <linux-kernel@...r.kernel.org>
Cc: kosaki.motohiro@...fujitsu.com
Subject: [PATCH] serial/8250: fix uninitialized warnings
fix following warnings.
drivers/serial/8250.c: In function ‘serial8250_shutdown’:
drivers/serial/8250.c:1612: warnings: ‘i’ may be used uninitialized in this function
Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@...fujitsu.com>
CC: linux-serial@...r.kernel.org
---
drivers/serial/8250.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: b/drivers/serial/8250.c
===================================================================
--- a/drivers/serial/8250.c 2008-11-05 01:10:11.000000000 +0900
+++ b/drivers/serial/8250.c 2008-11-05 01:38:39.000000000 +0900
@@ -1609,7 +1609,7 @@ static int serial_link_irq_chain(struct
static void serial_unlink_irq_chain(struct uart_8250_port *up)
{
- struct irq_info *i;
+ struct irq_info *i = NULL;
struct hlist_node *n;
struct hlist_head *h;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists