diff mbox

net: smc911x: Remove unused local variable

Message ID 1396570583-6564-1-git-send-email-laurent.pinchart@ideasonboard.com
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Laurent Pinchart April 4, 2014, 12:16 a.m. UTC
The ioaddr local variable is assigned to but never used in the
smc911x_rx_dma_irq() function, remove it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 drivers/net/ethernet/smsc/smc911x.c | 1 -
 1 file changed, 1 deletion(-)

Comments

David Miller April 4, 2014, 2:03 p.m. UTC | #1
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Date: Fri,  4 Apr 2014 02:16:23 +0200

> The ioaddr local variable is assigned to but never used in the
> smc911x_rx_dma_irq() function, remove it.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

Applied.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/net/ethernet/smsc/smc911x.c b/drivers/net/ethernet/smsc/smc911x.c
index c50fb08..50b4d83 100644
--- a/drivers/net/ethernet/smsc/smc911x.c
+++ b/drivers/net/ethernet/smsc/smc911x.c
@@ -1211,7 +1211,6 @@  static void
 smc911x_rx_dma_irq(int dma, void *data)
 {
 	struct net_device *dev = (struct net_device *)data;
-	unsigned long ioaddr = dev->base_addr;
 	struct smc911x_local *lp = netdev_priv(dev);
 	struct sk_buff *skb = lp->current_rx_skb;
 	unsigned long flags;