Release 4.12 include/linux/irqreturn.h
#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)
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Sebastian Andrzej Siewior | 18 | 36.73% | 1 | 16.67% |
Jan Beulich | 17 | 34.69% | 1 | 16.67% |
Thomas Gleixner | 12 | 24.49% | 2 | 33.33% |
Geert Uytterhoeven | 1 | 2.04% | 1 | 16.67% |
David Woodhouse | 1 | 2.04% | 1 | 16.67% |
Total | 49 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.