Merge tag 'mm-hotfixes-stable-2023-05-03-16-27' of git://git.kernel.org/pub/scm/linux...
[linux-block.git] / include / linux / irqhandler.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
75ffc007
TG
2#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;
bd0b9ac4 12typedef void (*irq_flow_handler_t)(struct irq_desc *desc);
75ffc007
TG
13
14#endif