net: ibm: emac: get rid of wol_irq
authorRosen Penev <rosenp@gmail.com>
Thu, 12 Sep 2024 02:49:03 +0000 (19:49 -0700)
committerJakub Kicinski <kuba@kernel.org>
Sat, 14 Sep 2024 04:48:58 +0000 (21:48 -0700)
This is completely unused.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Link: https://patch.msgid.link/20240912024903.6201-10-rosenp@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/ibm/emac/core.c

index 60c4943ca09df1e2dfd2cf52ecb164c1cc6f95ae..dac570f3c11036667ada989a870f81f3e45b33ab 100644 (file)
@@ -3029,9 +3029,8 @@ static int emac_probe(struct platform_device *ofdev)
        if (err)
                goto err_gone;
 
-       /* Get interrupts. EMAC irq is mandatory, WOL irq is optional */
+       /* Get interrupts. EMAC irq is mandatory */
        dev->emac_irq = irq_of_parse_and_map(np, 0);
-       dev->wol_irq = irq_of_parse_and_map(np, 1);
        if (!dev->emac_irq) {
                printk(KERN_ERR "%pOF: Can't map main interrupt\n", np);
                err = -ENODEV;
@@ -3055,13 +3054,13 @@ static int emac_probe(struct platform_device *ofdev)
        if (!dev->emacp) {
                dev_err(&ofdev->dev, "can't map device registers");
                err = -ENOMEM;
-               goto err_irq_unmap;
+               goto err_gone;
        }
 
        /* Wait for dependent devices */
        err = emac_wait_deps(dev);
        if (err)
-               goto err_irq_unmap;
+               goto err_gone;
        dev->mal = platform_get_drvdata(dev->mal_dev);
        if (dev->mdio_dev != NULL)
                dev->mdio_instance = platform_get_drvdata(dev->mdio_dev);
@@ -3189,9 +3188,6 @@ static int emac_probe(struct platform_device *ofdev)
        mal_unregister_commac(dev->mal, &dev->commac);
  err_rel_deps:
        emac_put_deps(dev);
- err_irq_unmap:
-       if (dev->wol_irq)
-               irq_dispose_mapping(dev->wol_irq);
  err_gone:
        if (blist)
                *blist = NULL;
@@ -3218,9 +3214,6 @@ static void emac_remove(struct platform_device *ofdev)
 
        mal_unregister_commac(dev->mal, &dev->commac);
        emac_put_deps(dev);
-
-       if (dev->wol_irq)
-               irq_dispose_mapping(dev->wol_irq);
 }
 
 /* XXX Features in here should be replaced by properties... */