From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753816Ab1IGQsY (ORCPT ); Wed, 7 Sep 2011 12:48:24 -0400 Received: from mail-ww0-f44.google.com ([74.125.82.44]:46460 "EHLO mail-ww0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753470Ab1IGQsV (ORCPT ); Wed, 7 Sep 2011 12:48:21 -0400 From: Yong Zhang To: linux-kernel@vger.kernel.org Cc: tglx@linutronix.de, mingo@elte.hu, Michal Simek , Joe Perches , Yong Zhang , John Stultz , microblaze-uclinux@itee.uq.edu.au Subject: [PATCH 13/62] microblaze: irq: Remove IRQF_DISABLED Date: Wed, 7 Sep 2011 16:10:10 +0800 Message-Id: <1315383059-3673-14-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> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This flag is a NOOP and can be removed now. Signed-off-by: Yong Zhang --- arch/microblaze/kernel/timer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/microblaze/kernel/timer.c b/arch/microblaze/kernel/timer.c index e5550ce..bb86351 100644 --- a/arch/microblaze/kernel/timer.c +++ b/arch/microblaze/kernel/timer.c @@ -163,7 +163,7 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id) static struct irqaction timer_irqaction = { .handler = timer_interrupt, - .flags = IRQF_DISABLED | IRQF_TIMER, + .flags = IRQF_TIMER, .name = "timer", .dev_id = &clockevent_microblaze_timer, }; -- 1.7.4.1