From patchwork Wed Sep 7 08:10:48 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yong Zhang X-Patchwork-Id: 113723 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from ozlabs.org (localhost [IPv6:::1]) by ozlabs.org (Postfix) with ESMTP id 26352B7630 for ; Wed, 7 Sep 2011 18:19:56 +1000 (EST) Received: from mail-ww0-f45.google.com (mail-ww0-f45.google.com [74.125.82.45]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority" (verified OK)) by ozlabs.org (Postfix) with ESMTPS id 12300B6F8E; Wed, 7 Sep 2011 18:19:46 +1000 (EST) Received: by wwg9 with SMTP id 9so6111507wwg.14 for ; Wed, 07 Sep 2011 01:19:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=4QEbvXGz8W7d7NWdjSHZro/sYDFxS8UTPS9NDOqbBQk=; b=rGCv2Vd/8K8MfjZDKY52p2fnjEDlDrlmoiIbX7dCgMkU6nSDALpwwlrlivf6OgdkTA nTcgO98KuFDyAqZs+Hs6nmPO0IkH2Y/QkLhQ27AHwPo/fnGJeT1jkHz+Nn4xM/N4lW8y weAIg0JMoXi/gs9VdcdrLnxNrc8tWhIw9wSvU= Received: by 10.216.136.216 with SMTP id w66mr4439113wei.94.1315383582770; Wed, 07 Sep 2011 01:19:42 -0700 (PDT) Received: from localhost ([61.148.56.138]) by mx.google.com with ESMTPS id fr18sm2829445wbb.9.2011.09.07.01.19.41 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 07 Sep 2011 01:19:42 -0700 (PDT) From: Yong Zhang To: linux-kernel@vger.kernel.org Subject: [PATCH 51/62] powerpc/ps3: irq: Remove IRQF_DISABLED Date: Wed, 7 Sep 2011 16:10:48 +0800 Message-Id: <1315383059-3673-52-git-send-email-yong.zhang0@gmail.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1315383059-3673-1-git-send-email-yong.zhang0@gmail.com> References: <1315383059-3673-1-git-send-email-yong.zhang0@gmail.com> Cc: Geoff Levand , cbe-oss-dev@lists.ozlabs.org, tglx@linutronix.de, linuxppc-dev@lists.ozlabs.org, mingo@elte.hu X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Sender: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org This flag is a NOOP and can be removed now. Signed-off-by: Yong Zhang Acked-by: Geoff Levand --- drivers/ps3/ps3-vuart.c | 2 +- drivers/ps3/ps3stor_lib.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/ps3/ps3-vuart.c b/drivers/ps3/ps3-vuart.c index d9fb729..fb73008 100644 --- a/drivers/ps3/ps3-vuart.c +++ b/drivers/ps3/ps3-vuart.c @@ -952,7 +952,7 @@ static int ps3_vuart_bus_interrupt_get(void) } result = request_irq(vuart_bus_priv.virq, ps3_vuart_irq_handler, - IRQF_DISABLED, "vuart", &vuart_bus_priv); + 0, "vuart", &vuart_bus_priv); if (result) { pr_debug("%s:%d: request_irq failed (%d)\n", diff --git a/drivers/ps3/ps3stor_lib.c b/drivers/ps3/ps3stor_lib.c index af0afa1..73acc12 100644 --- a/drivers/ps3/ps3stor_lib.c +++ b/drivers/ps3/ps3stor_lib.c @@ -166,7 +166,7 @@ int ps3stor_setup(struct ps3_storage_device *dev, irq_handler_t handler) goto fail_close_device; } - error = request_irq(dev->irq, handler, IRQF_DISABLED, + error = request_irq(dev->irq, handler, 0, dev->sbd.core.driver->name, dev); if (error) { dev_err(&dev->sbd.core, "%s:%u: request_irq failed %d\n",