blob: 1e6f4e7123d653c58fb914be633d3d2cc05f4bb8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Thomas Gleixner75ffc002014-11-11 21:58:34 +01002#ifndef _LINUX_IRQHANDLER_H
3#define _LINUX_IRQHANDLER_H
4
5/*
6 * Interrupt flow handler typedefs are defined here to avoid circular
7 * include dependencies.
8 */
9
10struct irq_desc;
11struct irq_data;
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +020012typedef void (*irq_flow_handler_t)(struct irq_desc *desc);
Thomas Gleixner75ffc002014-11-11 21:58:34 +010013typedef void (*irq_preflow_handler_t)(struct irq_data *data);
14
15#endif