aboutsummaryrefslogtreecommitdiff
path: root/include/linux/interrupt.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-02-07 01:55:43 +0100
committerThomas Gleixner <tglx@linutronix.de>2011-02-19 12:58:09 +0100
commit1535dfacbf21c4da1b73fcf07c39913da5bd5581 (patch)
tree28551fca52e2b636b3fdbc9d0b1e7a1cad06d791 /include/linux/interrupt.h
parentfe200ae48ef5c79bf7941fe8046ff9505c570ff6 (diff)
genirq: Move irq thread flags to core
Soleley used in core code. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/interrupt.h')
-rw-r--r--include/linux/interrupt.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index 7834726dd95..de97b958f47 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.
*