Updated PCI IDs to latest snapshot.
[tangerine.git] / arch / ppc-chrp / irq.hidd / irq.h
blobf3204a4f96cb25a41b25b0d00e63745b6c0981d5
1 #ifndef IRQ_H_
2 #define IRQ_H_
4 #include <inttypes.h>
5 #include <exec/lists.h>
6 #include <exec/libraries.h>
7 #include <exec/execbase.h>
9 #include <oop/oop.h>
11 #include <hidd/irq.h>
13 /***** IRQ system HIDD *******************/
15 /* IDs */
16 #define IID_Hidd_IRQ "hidd.bus.irq"
17 #define CLID_Hidd_IRQ "hidd.bus.irq"
19 /* misc */
21 struct irq_staticdata
23 OOP_Class *irqclass;
26 struct irqbase
28 struct Library library;
29 struct irq_staticdata isd;
32 #define ISD(cl) (&((struct irqbase *)cl->UserData)->isd)
34 #endif /*IRQ_H_*/