hardirq.h 401 B

1234567891011121314151617
  1. #ifndef __ASM_SH_HARDIRQ_H
  2. #define __ASM_SH_HARDIRQ_H
  3. #include <linux/threads.h>
  4. #include <linux/irq.h>
  5. typedef struct {
  6. unsigned int __softirq_pending;
  7. unsigned int __nmi_count; /* arch dependent */
  8. } ____cacheline_aligned irq_cpustat_t;
  9. #include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
  10. extern void ack_bad_irq(unsigned int irq);
  11. #endif /* __ASM_SH_HARDIRQ_H */