diff options
author | Christoph Hellwig <hch@lst.de> | 2009-09-23 05:04:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-23 13:15:21 -0400 |
commit | a70770998c1d99e86eea97294ae3cce059a18d7e (patch) | |
tree | a8c43c965cee862c2bf77f75a6297ad3e4f30c46 /arch/frv/include | |
parent | d19110baaf20d5183689287bdbcf91e26e40cb79 (diff) |
FRV: Use asm/generic-hardirq.h
Use asm/generic-hardirq.h to build asm/hardirq.h and also remove the unused
idle_timestamp field in irq_cpustat whilst we're at it.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/frv/include')
-rw-r--r-- | arch/frv/include/asm/hardirq.h | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/arch/frv/include/asm/hardirq.h b/arch/frv/include/asm/hardirq.h index fc47515822a2..5fc8b6f5bc55 100644 --- a/arch/frv/include/asm/hardirq.h +++ b/arch/frv/include/asm/hardirq.h | |||
@@ -12,24 +12,15 @@ | |||
12 | #ifndef __ASM_HARDIRQ_H | 12 | #ifndef __ASM_HARDIRQ_H |
13 | #define __ASM_HARDIRQ_H | 13 | #define __ASM_HARDIRQ_H |
14 | 14 | ||
15 | #include <linux/threads.h> | 15 | #include <asm/atomic.h> |
16 | #include <linux/irq.h> | ||
17 | |||
18 | typedef struct { | ||
19 | unsigned int __softirq_pending; | ||
20 | unsigned long idle_timestamp; | ||
21 | } ____cacheline_aligned irq_cpustat_t; | ||
22 | |||
23 | #include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */ | ||
24 | |||
25 | #ifdef CONFIG_SMP | ||
26 | #error SMP not available on FR-V | ||
27 | #endif /* CONFIG_SMP */ | ||
28 | 16 | ||
29 | extern atomic_t irq_err_count; | 17 | extern atomic_t irq_err_count; |
30 | static inline void ack_bad_irq(int irq) | 18 | static inline void ack_bad_irq(int irq) |
31 | { | 19 | { |
32 | atomic_inc(&irq_err_count); | 20 | atomic_inc(&irq_err_count); |
33 | } | 21 | } |
22 | #define ack_bad_irq ack_bad_irq | ||
23 | |||
24 | #include <asm-generic/hardirq.h> | ||
34 | 25 | ||
35 | #endif | 26 | #endif |