From: Mugunthan V N Date: Sat, 3 Aug 2013 11:09:45 +0000 (+0530) Subject: net: ethernet: davinci_emac: drop IRQF_DISABLED X-Git-Tag: Ubuntu-snapdragon-4.4.0-1029.32~10428^2~8 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=b6bb1c63dd46c4a9cdccbf5b5db49386eb6759a9;p=mirror_ubuntu-zesty-kernel.git 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 Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/ti/davinci_emac.c b/drivers/net/ethernet/ti/davinci_emac.c index 07b176bcf929..1a222bce4bd7 100644 --- a/drivers/net/ethernet/ti/davinci_emac.c +++ b/drivers/net/ethernet/ti/davinci_emac.c @@ -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++;