aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/irq.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h
index d58e58935465..566b1e541323 100644
--- a/include/linux/irq.h
+++ b/include/linux/irq.h
@@ -114,10 +114,14 @@ enum {
114 * 114 *
115 * IRQ_SET_MASK_OK - OK, core updates irq_data.affinity 115 * IRQ_SET_MASK_OK - OK, core updates irq_data.affinity
116 * IRQ_SET_MASK_NOCPY - OK, chip did update irq_data.affinity 116 * IRQ_SET_MASK_NOCPY - OK, chip did update irq_data.affinity
117 * IRQ_SET_MASK_OK_DONE - Same as IRQ_SET_MASK_OK for core. Special code to
118 * support stacked irqchips, which indicates skipping
119 * all descendent irqchips.
117 */ 120 */
118enum { 121enum {
119 IRQ_SET_MASK_OK = 0, 122 IRQ_SET_MASK_OK = 0,
120 IRQ_SET_MASK_OK_NOCOPY, 123 IRQ_SET_MASK_OK_NOCOPY,
124 IRQ_SET_MASK_OK_DONE,
121}; 125};
122 126
123struct msi_desc; 127struct msi_desc;