drivers/net: request_irq - Remove unnecessary leading & from second arg
[deliverable/linux.git] / drivers / net / stmmac / stmmac_main.c
index c2f14dc9ba289df6839fad9e9e7eec98c395cf21..e961e7593c1fa307600783b44b551cd3ba4b45b3 100644 (file)
@@ -1022,7 +1022,7 @@ static int stmmac_open(struct net_device *dev)
        }
 
        /* Request the IRQ lines */
-       ret = request_irq(dev->irq, &stmmac_interrupt,
+       ret = request_irq(dev->irq, stmmac_interrupt,
                          IRQF_SHARED, dev->name, dev);
        if (unlikely(ret < 0)) {
                pr_err("%s: ERROR: allocating the IRQ %d (error: %d)\n",
This page took 0.025129 seconds and 5 git commands to generate.