From: Guenter Roeck Date: Sun, 10 Jan 2016 15:10:45 +0000 (-0800) Subject: net: tc35815: Drop unused variable X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e253e8fbab01059c25c6d091e4888c68a26691f5;p=linux-beck.git net: tc35815: Drop unused variable Commit e7f4dc3536a4 ("mdio: Move allocation of interrupts into core") removes some code from tc_mii_init(), but does not remove a now unused variable. This results in the following build warning. drivers/net/ethernet/toshiba/tc35815.c: In function 'tc_mii_init': drivers/net/ethernet/toshiba/tc35815.c:670:6: warning: unused variable 'i' Fixes: e7f4dc3536a4 ("mdio: Move allocation of interrupts into core") Cc: Andrew Lunn Acked-by: Andrew Lunn Signed-off-by: Guenter Roeck Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/toshiba/tc35815.c b/drivers/net/ethernet/toshiba/tc35815.c index 71efe0092bec..54874783476a 100644 --- a/drivers/net/ethernet/toshiba/tc35815.c +++ b/drivers/net/ethernet/toshiba/tc35815.c @@ -654,7 +654,6 @@ static int tc_mii_init(struct net_device *dev) { struct tc35815_local *lp = netdev_priv(dev); int err; - int i; lp->mii_bus = mdiobus_alloc(); if (lp->mii_bus == NULL) {