Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 4be4a00fb55879ef44b5914c189aecffa828deb4 17 lines 314 B view raw
1#ifndef _LINUX_IRQRETURN_H 2#define _LINUX_IRQRETURN_H 3 4/** 5 * enum irqreturn 6 * @IRQ_NONE interrupt was not from this device 7 * @IRQ_HANDLED interrupt was handled by this device 8 */ 9enum irqreturn { 10 IRQ_NONE, 11 IRQ_HANDLED, 12}; 13 14typedef enum irqreturn irqreturn_t; 15#define IRQ_RETVAL(x) ((x) != IRQ_NONE) 16 17#endif