diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-02-07 01:55:43 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-02-19 12:58:09 +0100 |
commit | 1535dfacbf21c4da1b73fcf07c39913da5bd5581 (patch) | |
tree | 28551fca52e2b636b3fdbc9d0b1e7a1cad06d791 /include | |
parent | fe200ae48ef5c79bf7941fe8046ff9505c570ff6 (diff) | |
download | linux-1535dfacbf21c4da1b73fcf07c39913da5bd5581.tar.gz linux-1535dfacbf21c4da1b73fcf07c39913da5bd5581.tar.bz2 linux-1535dfacbf21c4da1b73fcf07c39913da5bd5581.zip |
genirq: Move irq thread flags to core
Soleley used in core code.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/interrupt.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 7834726dd95b..de97b958f478 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h @@ -74,20 +74,6 @@ #define IRQF_TIMER (__IRQF_TIMER | IRQF_NO_SUSPEND) /* - * Bits used by threaded handlers: - * IRQTF_RUNTHREAD - signals that the interrupt handler thread should run - * IRQTF_DIED - handler thread died - * IRQTF_WARNED - warning "IRQ_WAKE_THREAD w/o thread_fn" has been printed - * IRQTF_AFFINITY - irq thread is requested to adjust affinity - */ -enum { - IRQTF_RUNTHREAD, - IRQTF_DIED, - IRQTF_WARNED, - IRQTF_AFFINITY, -}; - -/* * These values can be returned by request_any_context_irq() and * describe the context the interrupt will be run in. * |