irqs.h 224 B

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