From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932186Ab3L3QKD (ORCPT ); Mon, 30 Dec 2013 11:10:03 -0500 Received: from mail-wi0-f177.google.com ([209.85.212.177]:65194 "EHLO mail-wi0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932163Ab3L3QKA (ORCPT ); Mon, 30 Dec 2013 11:10:00 -0500 From: Daniel Lezcano To: olof@lixom.net, khilman@linaro.org Cc: arnd@arndb.de, linux-kernel@vger.kernel.org, patches@linaro.org, linaro-kernel@lists.linaro.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH 16/17] ARM: ebsa110: Remove deprecated IRQF_DISABLED flag Date: Mon, 30 Dec 2013 17:09:30 +0100 Message-Id: <1388419771-30075-16-git-send-email-daniel.lezcano@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1388419771-30075-1-git-send-email-daniel.lezcano@linaro.org> References: <1388419771-30075-1-git-send-email-daniel.lezcano@linaro.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This flag is a NOOP and scheduled to be removed Signed-off-by: Daniel Lezcano --- arch/arm/mach-ebsa110/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-ebsa110/core.c b/arch/arm/mach-ebsa110/core.c index 68ac934..8254e71 100644 --- a/arch/arm/mach-ebsa110/core.c +++ b/arch/arm/mach-ebsa110/core.c @@ -206,7 +206,7 @@ ebsa110_timer_interrupt(int irq, void *dev_id) static struct irqaction ebsa110_timer_irq = { .name = "EBSA110 Timer Tick", - .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, + .flags = IRQF_TIMER | IRQF_IRQPOLL, .handler = ebsa110_timer_interrupt, }; -- 1.7.9.5