Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[PATCH] irq-flags: M32R: Use the new IRQF_ constants

Use the new IRQF_ constants and remove the SA_INTERRUPT define

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Thomas Gleixner and committed by
Linus Torvalds
aff60147 121a4226

+1 -3
+1 -1
arch/m32r/kernel/time.c
··· 237 237 return IRQ_HANDLED; 238 238 } 239 239 240 - struct irqaction irq0 = { timer_interrupt, SA_INTERRUPT, CPU_MASK_NONE, 240 + struct irqaction irq0 = { timer_interrupt, IRQF_DISABLED, CPU_MASK_NONE, 241 241 "MFT2", NULL, NULL }; 242 242 243 243 void __init time_init(void)
-2
include/asm-m32r/signal.h
··· 81 81 * SA_FLAGS values: 82 82 * 83 83 * SA_ONSTACK indicates that a registered stack_t will be used. 84 - * SA_INTERRUPT is a no-op, but left due to historical reasons. Use the 85 84 * SA_RESTART flag to get restarting signals (which were the default long ago) 86 85 * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop. 87 86 * SA_RESETHAND clears the handler when the signal is delivered. ··· 100 101 101 102 #define SA_NOMASK SA_NODEFER 102 103 #define SA_ONESHOT SA_RESETHAND 103 - #define SA_INTERRUPT 0x20000000 /* dummy -- ignored */ 104 104 105 105 #define SA_RESTORER 0x04000000 106 106