blob: 423bbbddf36d35c02cd50f92636aafc82a2b684a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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
|