]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net-next: mediatek: remove superfluous free_irq() call
authorJohn Crispin <john@phrozen.org>
Mon, 4 Jul 2016 13:37:10 +0000 (15:37 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 5 Jul 2016 06:55:56 +0000 (23:55 -0700)
Commit 8067302973a1 ("net-next: mediatek: add support for IRQ grouping")
adds handling for irq 1 and 2 to the uninit function but did not remove
irq 0 which is not used since irq grouping was introduced. Fix this by
removing the superfluous call to free_irq().

Reported-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: John Crispin <john@phrozen.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mediatek/mtk_eth_soc.c

index fbab9b27519b9a6109aebe9362dad40df287faa7..682797ea5e113452a127d3d2f0d4992a6af078e8 100644 (file)
@@ -1492,7 +1492,6 @@ static void mtk_uninit(struct net_device *dev)
        phy_disconnect(mac->phy_dev);
        mtk_mdio_cleanup(eth);
        mtk_irq_disable(eth, ~0);
-       free_irq(eth->irq[0], dev);
        free_irq(eth->irq[1], dev);
        free_irq(eth->irq[2], dev);
 }