]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/irqhandler.h
Merge tag 'iwlwifi-next-for-kalle-2016-07-01' of git://git.kernel.org/pub/scm/linux...
[mirror_ubuntu-artful-kernel.git] / include / linux / irqhandler.h
CommitLineData
75ffc007
TG
1#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;
bd0b9ac4 11typedef void (*irq_flow_handler_t)(struct irq_desc *desc);
75ffc007
TG
12typedef void (*irq_preflow_handler_t)(struct irq_data *data);
13
14#endif