mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-02 15:21:03 +00:00
f230b6d5c4
chip implementations need to know about it. Keep status in sync until all users are fixed. Accessor function: irqd_is_setaffinity_pending(irqdata) Coders who access them directly will be tracked down and slapped with stinking trouts. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
25 lines
609 B
C
25 lines
609 B
C
/*
|
|
* Internal header to deal with irq_desc->status which will be renamed
|
|
* to irq_desc->settings.
|
|
*/
|
|
enum {
|
|
_IRQ_DEFAULT_INIT_FLAGS = IRQ_DEFAULT_INIT_FLAGS,
|
|
};
|
|
|
|
#undef IRQ_INPROGRESS
|
|
#define IRQ_INPROGRESS GOT_YOU_MORON
|
|
#undef IRQ_REPLAY
|
|
#define IRQ_REPLAY GOT_YOU_MORON
|
|
#undef IRQ_WAITING
|
|
#define IRQ_WAITING GOT_YOU_MORON
|
|
#undef IRQ_DISABLED
|
|
#define IRQ_DISABLED GOT_YOU_MORON
|
|
#undef IRQ_PENDING
|
|
#define IRQ_PENDING GOT_YOU_MORON
|
|
#undef IRQ_MASKED
|
|
#define IRQ_MASKED GOT_YOU_MORON
|
|
#undef IRQ_WAKEUP
|
|
#define IRQ_WAKEUP GOT_YOU_MORON
|
|
#undef IRQ_MOVE_PENDING
|
|
#define IRQ_MOVE_PENDING GOT_YOU_MORON
|