summaryrefslogtreecommitdiff
path: root/source/include/aclocal.h
diff options
context:
space:
mode:
authorSaket Dumbre <97769119+sacdintel@users.noreply.github.com>2023-05-10 11:22:48 -0700
committerGitHub <noreply@github.com>2023-05-10 11:22:48 -0700
commit71abb8cff8e8adaef61f0e11eed42dda64892c1d (patch)
treeef5aed5eb59edaa93cb4c41f3f7ea501350b91ee /source/include/aclocal.h
parent3a526a6d94d3ab6798c95f62ebaff36f5344586a (diff)
parentef7cf185a046d76119b631f16e7c991543c80edc (diff)
downloadacpica-71abb8cff8e8adaef61f0e11eed42dda64892c1d.tar.gz
Merge pull request #864 from jmarinho/master
Add support for Interrupt in acpiexec
Diffstat (limited to 'source/include/aclocal.h')
-rw-r--r--source/include/aclocal.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/include/aclocal.h b/source/include/aclocal.h
index 2d7c8355a..99459a8b8 100644
--- a/source/include/aclocal.h
+++ b/source/include/aclocal.h
@@ -767,6 +767,15 @@ typedef struct acpi_field_info
} ACPI_FIELD_INFO;
+/* Information about the interrupt ID and _EVT of a GED device */
+
+typedef struct acpi_ged_handler_info
+{
+ struct acpi_ged_handler_info *Next;
+ UINT32 IntId; /* The interrupt ID that triggers the execution ofthe EvtMethod. */
+ ACPI_NAMESPACE_NODE *EvtMethod; /* The _EVT method to be executed when an interrupt with ID = IntID is received */
+
+} ACPI_GED_HANDLER_INFO;
/*****************************************************************************
*