From b7c40bcf28203cb023175fbe9ac4c09ea3f65e84 Mon Sep 17 00:00:00 2001 From: Florian Pose Date: Fri, 28 Oct 2011 17:06:04 +0200 Subject: [PATCH] Fixed compiler warning. --- devices/8139too-2.6.32-ethercat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devices/8139too-2.6.32-ethercat.c b/devices/8139too-2.6.32-ethercat.c index 3afb1960..630387ef 100644 --- a/devices/8139too-2.6.32-ethercat.c +++ b/devices/8139too-2.6.32-ethercat.c @@ -1779,7 +1779,7 @@ static netdev_tx_t rtl8139_start_xmit (struct sk_buff *skb, void __iomem *ioaddr = tp->mmio_addr; unsigned int entry; unsigned int len = skb->len; - unsigned long flags; + unsigned long flags = 0; /* Calculate the next Tx descriptor entry. */ entry = tp->cur_tx % NUM_TX_DESC;