From patchwork Sat Aug 3 11:09:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mugunthan V N X-Patchwork-Id: 2838252 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 0A719BF535 for ; Sat, 3 Aug 2013 11:31:30 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 44DAD20143 for ; Sat, 3 Aug 2013 11:31:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 616BB20148 for ; Sat, 3 Aug 2013 11:31:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751548Ab3HCLbX (ORCPT ); Sat, 3 Aug 2013 07:31:23 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:35620 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751522Ab3HCLbW (ORCPT ); Sat, 3 Aug 2013 07:31:22 -0400 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id r73BVLdr009466; Sat, 3 Aug 2013 06:31:21 -0500 Received: from DFLE73.ent.ti.com (dfle73.ent.ti.com [128.247.5.110]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id r73BVLc5032579; Sat, 3 Aug 2013 06:31:21 -0500 Received: from dlelxv22.itg.ti.com (172.17.1.197) by DFLE73.ent.ti.com (128.247.5.110) with Microsoft SMTP Server id 14.2.342.3; Sat, 3 Aug 2013 06:31:20 -0500 Received: from localhost.localdomain (h81-175.vpn.ti.com [172.24.81.175]) by dlelxv22.itg.ti.com (8.13.8/8.13.8) with ESMTP id r73BVH4E010151; Sat, 3 Aug 2013 06:31:18 -0500 From: Mugunthan V N To: CC: , , Mugunthan V N Subject: [net PATCH 1/1] net: ethernet: davinci_emac: drop IRQF_DISABLED Date: Sat, 3 Aug 2013 16:39:45 +0530 Message-ID: <1375528185-24507-1-git-send-email-mugunthanvnm@ti.com> X-Mailer: git-send-email 1.8.4.rc0.11.g35f5eaa MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Spam-Status: No, score=-8.4 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP IRQF_DISABLED is a no-op by now and should be removed. Signed-off-by: Mugunthan V N --- drivers/net/ethernet/ti/davinci_emac.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/ethernet/ti/davinci_emac.c b/drivers/net/ethernet/ti/davinci_emac.c index 07b176b..1a222bce 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++;