Commit 52124ad9 authored by Jean-Paul Saman's avatar Jean-Paul Saman

serial/8250.c: fix use of uninitialized variable

parent 7b205510
......@@ -1691,7 +1691,7 @@ static int serial_link_irq_chain(struct uart_8250_port *up)
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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment