blob: 661bed0ed1f3124ca2024559f2613507dd22221f [file] [log] [blame]
Thomas Gleixner75ffc002014-11-11 21:58:34 +01001#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
9struct irq_desc;
10struct irq_data;
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +020011typedef void (*irq_flow_handler_t)(struct irq_desc *desc);
Thomas Gleixner75ffc002014-11-11 21:58:34 +010012typedef void (*irq_preflow_handler_t)(struct irq_data *data);
13
14#endif