diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/blackfin/include/asm/irqflags.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/blackfin/include/asm/irqflags.h b/arch/blackfin/include/asm/irqflags.h index 813a1af3e865..f3ed93144e23 100644 --- a/arch/blackfin/include/asm/irqflags.h +++ b/arch/blackfin/include/asm/irqflags.h | |||
@@ -8,6 +8,8 @@ | |||
8 | #ifndef __ASM_BFIN_IRQFLAGS_H__ | 8 | #ifndef __ASM_BFIN_IRQFLAGS_H__ |
9 | #define __ASM_BFIN_IRQFLAGS_H__ | 9 | #define __ASM_BFIN_IRQFLAGS_H__ |
10 | 10 | ||
11 | #include <mach/blackfin.h> | ||
12 | |||
11 | #ifdef CONFIG_SMP | 13 | #ifdef CONFIG_SMP |
12 | # include <asm/pda.h> | 14 | # include <asm/pda.h> |
13 | # include <asm/processor.h> | 15 | # include <asm/processor.h> |
@@ -185,7 +187,12 @@ static inline void raw_local_irq_enable(void) | |||
185 | bfin_sti(bfin_irq_flags); | 187 | bfin_sti(bfin_irq_flags); |
186 | } | 188 | } |
187 | 189 | ||
188 | #define raw_local_save_flags(flags) do { (flags) = bfin_read_IMASK(); } while (0) | 190 | static inline unsigned long arch_local_save_flags(void) |
191 | { | ||
192 | return bfin_read_IMASK(); | ||
193 | } | ||
194 | |||
195 | #define raw_local_save_flags(flags) do { (flags) = arch_local_save_flags(); } while (0) | ||
189 | 196 | ||
190 | #define raw_irqs_disabled_flags(flags) (((flags) & ~0x3f) == 0) | 197 | #define raw_irqs_disabled_flags(flags) (((flags) & ~0x3f) == 0) |
191 | 198 | ||