diff options
author | Robert Moore <Robert.Moore@intel.com> | 2013-02-14 10:08:27 -0800 |
---|---|---|
committer | Robert Moore <Robert.Moore@intel.com> | 2013-02-14 10:08:27 -0800 |
commit | d24fc3744e73199bc9aa8581dc1a2a7f2c90176c (patch) | |
tree | 48d41e543957e9361fd306cf6e43f03305292e6f /source/components/utilities/utglobal.c | |
parent | f5ff3dc5558d36b4470057b21bbdd6e18f1ed367 (diff) | |
download | acpica-d24fc3744e73199bc9aa8581dc1a2a7f2c90176c.tar.gz |
Disassembler: Add warnings for unresolved control methods.
Flags the case where external control methods are unresolved,
meaning that the disassembler had no idea how many arguments
to parse for the method invocation.
Diffstat (limited to 'source/components/utilities/utglobal.c')
-rw-r--r-- | source/components/utilities/utglobal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/components/utilities/utglobal.c b/source/components/utilities/utglobal.c index cbe1a3c35..330b86b45 100644 --- a/source/components/utilities/utglobal.c +++ b/source/components/utilities/utglobal.c @@ -415,6 +415,8 @@ AcpiUtInitGlobals ( #ifdef ACPI_DISASSEMBLER AcpiGbl_ExternalList = NULL; + AcpiGbl_NumExternalMethods = 0; + AcpiGbl_ResolvedExternalMethods = 0; #endif #ifdef ACPI_DEBUG_OUTPUT |