All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] score: remove deprecated IRQF_DISABLED
@ 2013-10-12  4:09 Michael Opdenacker
  2013-12-09  5:30 ` [PATCH][RESEND] " Michael Opdenacker
  0 siblings, 1 reply; 7+ messages in thread
From: Michael Opdenacker @ 2013-10-12  4:09 UTC (permalink / raw)
  To: liqin.linux, lennox.wu; +Cc: linux-kernel, Michael Opdenacker

This patch proposes to remove the use of the IRQF_DISABLED flag

It's a NOOP since 2.6.35 and it will be removed one day.

Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
---
 arch/score/kernel/time.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/score/kernel/time.c b/arch/score/kernel/time.c
index f0a43aff..24770cd 100644
--- a/arch/score/kernel/time.c
+++ b/arch/score/kernel/time.c
@@ -41,7 +41,7 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id)
 
 static struct irqaction timer_irq = {
 	.handler = timer_interrupt,
-	.flags = IRQF_DISABLED | IRQF_TIMER,
+	.flags = IRQF_TIMER,
 	.name = "timer",
 };
 
-- 
1.8.1.2


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-10-02 19:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-12  4:09 [PATCH] score: remove deprecated IRQF_DISABLED Michael Opdenacker
2013-12-09  5:30 ` [PATCH][RESEND] " Michael Opdenacker
2014-03-04 21:17   ` [PATCH] [RESEND] " Michael Opdenacker
2014-03-05  3:08     ` Lennox Wu
2014-10-01 10:04       ` Michael Opdenacker
2014-10-01 16:25         ` Lennox Wu
2014-10-02 19:45           ` Michael Opdenacker

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.