irq_controller.h 257 B

123456789101112
  1. #ifndef __IRQ_CONTROLLER__
  2. #define __IRQ_CONTROLLER__
  3. struct irq_domain {
  4. int (*xlate)(struct irq_domain *h, const u32 *intspec, u32 intsize,
  5. u32 *out_hwirq, u32 *out_type);
  6. void *priv;
  7. struct device_node *controller;
  8. struct list_head l;
  9. };
  10. #endif