Skip to content

Commit

Permalink
net: ethernet: davinci_emac: drop IRQF_DISABLED
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
mugunthanvnm authored and davem330 committed Aug 3, 2013
1 parent 6a8b7f0 commit b6bb1c6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/net/ethernet/ti/davinci_emac.c
Original file line number Diff line number Diff line change
Expand Up @@ -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++;
Expand Down

0 comments on commit b6bb1c6

Please sign in to comment.