From: Daniel Wagner <[email protected]> 3e9389573574 ("um: Use asm-generic/irqflags.h") introduced a typo.
Signed-off-by: Daniel Wagner <[email protected]> --- Hi Richard, I just saw that the original patch made into mainline including a fat typo. I just wonder why the compiler didn't complain or why it just worked... cheers, daniel arch/um/include/asm/irqflags.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/um/include/asm/irqflags.h b/arch/um/include/asm/irqflags.h index 3bb221e..2bd602e 100644 --- a/arch/um/include/asm/irqflags.h +++ b/arch/um/include/asm/irqflags.h @@ -31,7 +31,7 @@ static inline void arch_local_irq_disable(void) } #define ARCH_IRQ_DISABLED 0 -#define ARCh_IRQ_ENABLED (SIGIO|SIGVTALRM) +#define ARCH_IRQ_ENABLED (SIGIO|SIGVTALRM) #include <asm-generic/irqflags.h> -- 2.7.4

