hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
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_EDGE - irq line received an edge event
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_EDGE = 0x00004000,
6769 };
6870
6971 #include "debug.h"