Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
irqreturn.h
Go to the documentation of this file.
1 #ifndef _LINUX_IRQRETURN_H
2 #define _LINUX_IRQRETURN_H
3 
10 enum irqreturn {
11  IRQ_NONE = (0 << 0),
12  IRQ_HANDLED = (1 << 0),
13  IRQ_WAKE_THREAD = (1 << 1),
14 };
15 
16 typedef enum irqreturn irqreturn_t;
17 #define IRQ_RETVAL(x) ((x) != IRQ_NONE)
18 
19 #endif