mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 01:05:08 +07:00
13 lines
257 B
C
13 lines
257 B
C
|
#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
|