hardirq.h 525 B

1234567891011121314151617181920212223242526
  1. #ifndef _ASM_IA64_HARDIRQ_H
  2. #define _ASM_IA64_HARDIRQ_H
  3. /*
  4. * Modified 1998-2002, 2004 Hewlett-Packard Co
  5. * David Mosberger-Tang <davidm@hpl.hp.com>
  6. */
  7. /*
  8. * No irq_cpustat_t for IA-64. The data is held in the per-CPU data structure.
  9. */
  10. #define __ARCH_IRQ_STAT 1
  11. #define local_softirq_pending() (local_cpu_data->softirq_pending)
  12. #include <linux/threads.h>
  13. #include <linux/irq.h>
  14. #include <asm/processor.h>
  15. extern void __iomem *ipi_base_addr;
  16. void ack_bad_irq(unsigned int irq);
  17. #endif /* _ASM_IA64_HARDIRQ_H */