ckfwq/linux-3.0.4/arch/x86/include/asm/irq_controller.h

13 lines
257 B
C
Raw Normal View History

2024-12-30 10:53:50 +08:00
#ifndef __IRQ_CONTROLLER__
#define __IRQ_CONTROLLER__
struct irq_domain {
int (*xlate)(struct irq_domain *h, const u32 *intspec, u32 intsize,
u32 *out_hwirq, u32 *out_type);
void *priv;
struct device_node *controller;
struct list_head l;
};
#endif