From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932223Ab3L3QLa (ORCPT ); Mon, 30 Dec 2013 11:11:30 -0500 Received: from mail-we0-f170.google.com ([74.125.82.170]:34728 "EHLO mail-we0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932132Ab3L3QJz (ORCPT ); Mon, 30 Dec 2013 11:09:55 -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 13/17] ARM: lpc32xx: Remove deprecated IRQF_DISABLED flag Date: Mon, 30 Dec 2013 17:09:27 +0100 Message-Id: <1388419771-30075-13-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-lpc32xx/timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-lpc32xx/timer.c b/arch/arm/mach-lpc32xx/timer.c index 20eab63..4e58372 100644 --- a/arch/arm/mach-lpc32xx/timer.c +++ b/arch/arm/mach-lpc32xx/timer.c @@ -90,7 +90,7 @@ static irqreturn_t lpc32xx_timer_interrupt(int irq, void *dev_id) static struct irqaction lpc32xx_timer_irq = { .name = "LPC32XX Timer Tick", - .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, + .flags = IRQF_TIMER | IRQF_IRQPOLL, .handler = lpc32xx_timer_interrupt, }; -- 1.7.9.5