https://github.com/torvalds/linux
Raw File
Tip revision: 4c2e07c6a29e0129e975727b9f57eede813eea85 authored by Linus Torvalds on 27 June 2016, 00:52:03 UTC
Linux 4.7-rc5
Tip revision: 4c2e07c
irqhandler.h
#ifndef _LINUX_IRQHANDLER_H
#define _LINUX_IRQHANDLER_H

/*
 * Interrupt flow handler typedefs are defined here to avoid circular
 * include dependencies.
 */

struct irq_desc;
struct irq_data;
typedef	void (*irq_flow_handler_t)(struct irq_desc *desc);
typedef	void (*irq_preflow_handler_t)(struct irq_data *data);

#endif
back to top