diff mbox

[2/3] net: ethernet: korina: drop unused variable

Message ID 1369267057-9371-2-git-send-email-emilio@elopez.com.ar
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Emilio López May 22, 2013, 11:57 p.m. UTC
Commit e998fd4 ("net: ethernet: korina: initialize variables directly")
dropped the only loop that was using i but did not remove the actual
variable, therefore causing a warning when building. This patch drops
the now redundant line.

Signed-off-by: Emilio López <emilio@elopez.com.ar>
---
 drivers/net/ethernet/korina.c | 1 -
 1 file changed, 1 deletion(-)

Comments

David Miller May 23, 2013, 6:43 a.m. UTC | #1
From: Emilio López <emilio@elopez.com.ar>
Date: Wed, 22 May 2013 20:57:36 -0300

> Commit e998fd4 ("net: ethernet: korina: initialize variables directly")
> dropped the only loop that was using i but did not remove the actual
> variable, therefore causing a warning when building. This patch drops
> the now redundant line.
> 
> Signed-off-by: Emilio López <emilio@elopez.com.ar>

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/korina.c b/drivers/net/ethernet/korina.c
index 0b57085..e7851d1 100644
--- a/drivers/net/ethernet/korina.c
+++ b/drivers/net/ethernet/korina.c
@@ -483,7 +483,6 @@  static void korina_multicast_list(struct net_device *dev)
 	unsigned long flags;
 	struct netdev_hw_addr *ha;
 	u32 recognise = ETH_ARC_AB;	/* always accept broadcasts */
-	int i;
 
 	/* Set promiscuous mode */
 	if (dev->flags & IFF_PROMISC)