2017-11-01 15:07:57 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2006-06-23 02:06:00 -07:00
|
|
|
#ifndef _LINUX_IRQRETURN_H
|
|
|
|
|
#define _LINUX_IRQRETURN_H
|
|
|
|
|
|
2008-09-30 23:14:27 +02:00
|
|
|
/**
|
2022-11-23 22:30:13 -08:00
|
|
|
* enum irqreturn - irqreturn type values
|
|
|
|
|
* @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
|
2006-06-23 02:06:00 -07:00
|
|
|
*/
|
2008-09-30 23:14:27 +02:00
|
|
|
enum irqreturn {
|
2011-05-31 08:56:11 +02:00
|
|
|
IRQ_NONE = (0 << 0),
|
|
|
|
|
IRQ_HANDLED = (1 << 0),
|
|
|
|
|
IRQ_WAKE_THREAD = (1 << 1),
|
2008-09-30 23:14:27 +02:00
|
|
|
};
|
2006-06-23 02:06:00 -07:00
|
|
|
|
2008-09-30 23:14:27 +02:00
|
|
|
typedef enum irqreturn irqreturn_t;
|
2013-11-15 14:15:07 -08:00
|
|
|
#define IRQ_RETVAL(x) ((x) ? IRQ_HANDLED : IRQ_NONE)
|
2006-06-23 02:06:00 -07:00
|
|
|
|
|
|
|
|
#endif
|