irq_32.h 487 B

123456789101112131415161718192021222324
  1. /* irq.h: IRQ registers on the Sparc.
  2. *
  3. * Copyright (C) 1995, 2007 David S. Miller (davem@davemloft.net)
  4. */
  5. #ifndef _SPARC_IRQ_H
  6. #define _SPARC_IRQ_H
  7. /* Allocated number of logical irq numbers.
  8. * sun4d boxes (ss2000e) should be OK with ~32.
  9. * Be on the safe side and make room for 64
  10. */
  11. #define NR_IRQS 64
  12. #include <linux/interrupt.h>
  13. #define irq_canonicalize(irq) (irq)
  14. void __init init_IRQ(void);
  15. void __init sun4d_init_sbi_irq(void);
  16. #define NO_IRQ 0xffffffff
  17. #endif