diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-08-03 10:04:04 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-08-07 04:39:37 -0400 |
commit | 897d85275d7f061ff0ec838bd5224a9e76ad07d6 (patch) | |
tree | 3389a9f0e5c25732f81bbda6e6a38c7131ab36b8 /arch/arm/include/asm/hw_irq.h | |
parent | bccf650270a94cec6e9238743e84c6e01de30c70 (diff) |
[ARM] Fix circular include dependency with IRQ headers
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/include/asm/hw_irq.h')
-rw-r--r-- | arch/arm/include/asm/hw_irq.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/arch/arm/include/asm/hw_irq.h b/arch/arm/include/asm/hw_irq.h index f1a08a500604..90831f6f5f5c 100644 --- a/arch/arm/include/asm/hw_irq.h +++ b/arch/arm/include/asm/hw_irq.h | |||
@@ -4,6 +4,24 @@ | |||
4 | #ifndef _ARCH_ARM_HW_IRQ_H | 4 | #ifndef _ARCH_ARM_HW_IRQ_H |
5 | #define _ARCH_ARM_HW_IRQ_H | 5 | #define _ARCH_ARM_HW_IRQ_H |
6 | 6 | ||
7 | #include <asm/mach/irq.h> | 7 | static inline void ack_bad_irq(int irq) |
8 | { | ||
9 | extern unsigned long irq_err_count; | ||
10 | irq_err_count++; | ||
11 | } | ||
12 | |||
13 | /* | ||
14 | * Obsolete inline function for calling irq descriptor handlers. | ||
15 | */ | ||
16 | static inline void desc_handle_irq(unsigned int irq, struct irq_desc *desc) | ||
17 | { | ||
18 | desc->handle_irq(irq, desc); | ||
19 | } | ||
20 | |||
21 | void set_irq_flags(unsigned int irq, unsigned int flags); | ||
22 | |||
23 | #define IRQF_VALID (1 << 0) | ||
24 | #define IRQF_PROBE (1 << 1) | ||
25 | #define IRQF_NOAUTOEN (1 << 2) | ||
8 | 26 | ||
9 | #endif | 27 | #endif |