]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - include/linux/irqhandler.h
mtd: nand: complain loudly when chip->bits_per_cell is not correctly initialized
[karo-tx-linux.git] / include / linux / irqhandler.h
1 #ifndef _LINUX_IRQHANDLER_H
2 #define _LINUX_IRQHANDLER_H
3
4 /*
5  * Interrupt flow handler typedefs are defined here to avoid circular
6  * include dependencies.
7  */
8
9 struct irq_desc;
10 struct irq_data;
11 typedef void (*irq_flow_handler_t)(struct irq_desc *desc);
12 typedef void (*irq_preflow_handler_t)(struct irq_data *data);
13
14 #endif