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

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
...@@ -1568,8 +1568,7 @@ static int emac_dev_open(struct net_device *ndev) ...@@ -1568,8 +1568,7 @@ static int emac_dev_open(struct net_device *ndev)
while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k))) { while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k))) {
for (i = res->start; i <= res->end; i++) { for (i = res->start; i <= res->end; i++) {
if (devm_request_irq(&priv->pdev->dev, i, emac_irq, if (devm_request_irq(&priv->pdev->dev, i, emac_irq,
IRQF_DISABLED, 0, ndev->name, ndev))
ndev->name, ndev))
goto rollback; goto rollback;
} }
k++; k++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment