]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/irqhandler.h
mm/hotplug: invalid PFNs from pfn_to_online_page()
[mirror_ubuntu-bionic-kernel.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
13typedef void (*irq_preflow_handler_t)(struct irq_data *data);
14
15#endif