aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/irq.h')
-rw-r--r--include/linux/irq.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h
index 62aa2877d7f3..6d5467752e82 100644
--- a/include/linux/irq.h
+++ b/include/linux/irq.h
@@ -535,6 +535,7 @@ struct irq_chip {
535 * IRQCHIP_ONESHOT_SAFE: One shot does not require mask/unmask 535 * IRQCHIP_ONESHOT_SAFE: One shot does not require mask/unmask
536 * IRQCHIP_EOI_THREADED: Chip requires eoi() on unmask in threaded mode 536 * IRQCHIP_EOI_THREADED: Chip requires eoi() on unmask in threaded mode
537 * IRQCHIP_SUPPORTS_LEVEL_MSI Chip can provide two doorbells for Level MSIs 537 * IRQCHIP_SUPPORTS_LEVEL_MSI Chip can provide two doorbells for Level MSIs
538 * IRQCHIP_AFFINITY_PRE_STARTUP: Default affinity update before startup
538 */ 539 */
539enum { 540enum {
540 IRQCHIP_SET_TYPE_MASKED = (1 << 0), 541 IRQCHIP_SET_TYPE_MASKED = (1 << 0),
@@ -545,6 +546,7 @@ enum {
545 IRQCHIP_ONESHOT_SAFE = (1 << 5), 546 IRQCHIP_ONESHOT_SAFE = (1 << 5),
546 IRQCHIP_EOI_THREADED = (1 << 6), 547 IRQCHIP_EOI_THREADED = (1 << 6),
547 IRQCHIP_SUPPORTS_LEVEL_MSI = (1 << 7), 548 IRQCHIP_SUPPORTS_LEVEL_MSI = (1 << 7),
549 IRQCHIP_AFFINITY_PRE_STARTUP = (1 << 10),
548}; 550};
549 551
550#include <linux/irqdesc.h> 552#include <linux/irqdesc.h>