irqs.h 198 B

123456789
  1. #ifndef __ASM_MACH_IRQS_H
  2. #define __ASM_MACH_IRQS_H
  3. #define NR_IRQS 512
  4. #define evt2irq(evt) (((evt) >> 5) - 16)
  5. #define irq2evt(irq) (((irq) + 16) << 5)
  6. #endif /* __ASM_MACH_IRQS_H */