netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: lantiq_etop: Remove unused 'i' variable
@ 2016-09-02 14:26 Paul Burton
  2016-09-04 18:48 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Paul Burton @ 2016-09-02 14:26 UTC (permalink / raw)
  To: netdev
  Cc: Paul Burton, linux-kernel, Andrew Lunn, Florian Westphal,
	Florian Fainelli, David S. Miller

Commit e7f4dc3536a4 ("mdio: Move allocation of interrupts into core")
removed the only use of the 'i' variable from ltq_etop_mdio_init() but
left the variable declaration behind, leading to the following compiler
warning:

  drivers/net/ethernet/lantiq_etop.c: In function 'ltq_etop_mdio_init':
  drivers/net/ethernet/lantiq_etop.c:414:6: warning: unused variable 'i' [-Wunused-variable]
    int i;
        ^

Fix this by removing the declaration of the 'i' variable.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>

---

 drivers/net/ethernet/lantiq_etop.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/ethernet/lantiq_etop.c b/drivers/net/ethernet/lantiq_etop.c
index dc82b1b..0d2f8e9 100644
--- a/drivers/net/ethernet/lantiq_etop.c
+++ b/drivers/net/ethernet/lantiq_etop.c
@@ -411,7 +411,6 @@ static int
 ltq_etop_mdio_init(struct net_device *dev)
 {
 	struct ltq_etop_priv *priv = netdev_priv(dev);
-	int i;
 	int err;
 
 	priv->mii_bus = mdiobus_alloc();
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-09-04 18:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-02 14:26 [PATCH] net: lantiq_etop: Remove unused 'i' variable Paul Burton
2016-09-04 18:48 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).