Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6bb1c63 authored by Mugunthan V N's avatar Mugunthan V N Committed by David S. Miller
Browse files

net: ethernet: davinci_emac: drop IRQF_DISABLED



IRQF_DISABLED is a no-op by now and should be removed.

Signed-off-by: default avatarMugunthan V N <mugunthanvnm@ti.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6a8b7f0c
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1568,8 +1568,7 @@ static int emac_dev_open(struct net_device *ndev)
	while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k))) {
		for (i = res->start; i <= res->end; i++) {
			if (devm_request_irq(&priv->pdev->dev, i, emac_irq,
					     IRQF_DISABLED,
					     ndev->name, ndev))
					     0, ndev->name, ndev))
				goto rollback;
		}
		k++;