#ifndef _LINUX_IRQRETURN_H #define _LINUX_IRQRETURN_H /** * enum irqreturn * @IRQ_NONE interrupt was not from this device or was not handled * @IRQ_HANDLED interrupt was handled by this device * @IRQ_WAKE_THREAD handler requests to wake the handler thread */ enum irqreturn { IRQ_NONE = (0 << 0), IRQ_HANDLED = (1 << 0), IRQ_WAKE_THREAD = (1 << 1), }; typedef enum irqreturn irqreturn_t; #define IRQ_RETVAL(x) ((x) ? IRQ_HANDLED : IRQ_NONE) #endifOverall Contributors
| Person | Tokens | Prop | Commits | CommitProp | |
| sebastian andrzej siewior | sebastian andrzej siewior | 18 | 36.73% | 1 | 16.67% |
| jan beulich | jan beulich | 17 | 34.69% | 1 | 16.67% |
| thomas gleixner | thomas gleixner | 12 | 24.49% | 2 | 33.33% |
| david woodhouse | david woodhouse | 1 | 2.04% | 1 | 16.67% |
| geert uytterhoeven | geert uytterhoeven | 1 | 2.04% | 1 | 16.67% |
| Total | 49 | 100.00% | 6 | 100.00% |