Skip to content

Commit b6bb1c6

Browse files
mugunthanvnmdavem330
authored andcommitted
net: ethernet: davinci_emac: drop IRQF_DISABLED
IRQF_DISABLED is a no-op by now and should be removed. Signed-off-by: Mugunthan V N <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 6a8b7f0 commit b6bb1c6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/net/ethernet/ti/davinci_emac.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1568,8 +1568,7 @@ static int emac_dev_open(struct net_device *ndev)
15681568
while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k))) {
15691569
for (i = res->start; i <= res->end; i++) {
15701570
if (devm_request_irq(&priv->pdev->dev, i, emac_irq,
1571-
IRQF_DISABLED,
1572-
ndev->name, ndev))
1571+
0, ndev->name, ndev))
15731572
goto rollback;
15741573
}
15751574
k++;

0 commit comments

Comments
 (0)