hardirq.h 485 B

1234567891011121314151617181920212223
  1. #ifndef __ASM_AVR32_HARDIRQ_H
  2. #define __ASM_AVR32_HARDIRQ_H
  3. #include <linux/threads.h>
  4. #include <asm/irq.h>
  5. #ifndef __ASSEMBLY__
  6. #include <linux/cache.h>
  7. /* entry.S is sensitive to the offsets of these fields */
  8. typedef struct {
  9. unsigned int __softirq_pending;
  10. } ____cacheline_aligned irq_cpustat_t;
  11. void ack_bad_irq(unsigned int irq);
  12. /* Standard mappings for irq_cpustat_t above */
  13. #include <linux/irq_cpustat.h>
  14. #endif /* __ASSEMBLY__ */
  15. #endif /* __ASM_AVR32_HARDIRQ_H */