irq_32.h 287 B

12345678910111213141516
  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. #include <linux/interrupt.h>
  8. #define NR_IRQS 16
  9. #define irq_canonicalize(irq) (irq)
  10. extern void __init init_IRQ(void);
  11. #endif