genirq: Move wakeup state to irq_data
Some irq_chips need to know the state of wakeup mode for setting the trigger type etc. Reflect it in irq_data state. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
@ -46,7 +46,6 @@ enum {
|
||||
* IRQS_PENDING - irq is pending and replayed later
|
||||
* IRQS_MASKED - irq is masked
|
||||
* IRQS_SUSPENDED - irq is suspended
|
||||
* IRQS_WAKEUP - irq triggers system wakeup from suspend
|
||||
*/
|
||||
enum {
|
||||
IRQS_AUTODETECT = 0x00000001,
|
||||
@ -60,7 +59,6 @@ enum {
|
||||
IRQS_PENDING = 0x00000200,
|
||||
IRQS_MASKED = 0x00000400,
|
||||
IRQS_SUSPENDED = 0x00000800,
|
||||
IRQS_WAKEUP = 0x00001000,
|
||||
};
|
||||
|
||||
#include "compat.h"
|
||||
|
Reference in New Issue
Block a user