irq.h 438 B

1234567891011121314151617181920212223
  1. #ifndef _ASM_IRQ_H
  2. #define _ASM_IRQ_H
  3. #include <asm/arch/irq.h>
  4. extern __inline__ int irq_canonicalize(int irq)
  5. {
  6. return irq;
  7. }
  8. extern void disable_irq(unsigned int);
  9. extern void enable_irq(unsigned int);
  10. #define disable_irq_nosync disable_irq
  11. #define enable_irq_nosync enable_irq
  12. struct irqaction;
  13. struct pt_regs;
  14. int handle_IRQ_event(unsigned int, struct pt_regs *, struct irqaction *);
  15. #endif /* _ASM_IRQ_H */