hc
2024-09-20 cf4ce59b3b70238352c7f1729f0f7223214828ad
kernel/kernel/irq/internals.h
....@@ -52,6 +52,7 @@
5252 * IRQS_PENDING - irq is pending and replayed later
5353 * IRQS_SUSPENDED - irq is suspended
5454 * IRQS_NMI - irq line is used to deliver NMIs
55
+ * IRQS_SYSFS - descriptor has been added to sysfs
5556 */
5657 enum {
5758 IRQS_AUTODETECT = 0x00000001,
....@@ -64,6 +65,7 @@
6465 IRQS_SUSPENDED = 0x00000800,
6566 IRQS_TIMINGS = 0x00001000,
6667 IRQS_NMI = 0x00002000,
68
+ IRQS_SYSFS = 0x00004000,
6769 };
6870
6971 #include "debug.h"