]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - include/linux/irqhandler.h
Merge branch 'fixes' of git://git.armlinux.org.uk/~rmk/linux-arm
[mirror_ubuntu-bionic-kernel.git] / include / linux / irqhandler.h
1 /* SPDX-License-Identifier: GPL-2.0 */
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
10 struct irq_desc;
11 struct irq_data;
12 typedef void (*irq_flow_handler_t)(struct irq_desc *desc);
13 typedef void (*irq_preflow_handler_t)(struct irq_data *data);
14
15 #endif