summaryrefslogtreecommitdiff
path: root/source/compiler/aslmessages.c
diff options
context:
space:
mode:
authorErik Kaneda <erik.kaneda@intel.com>2021-02-04 10:26:08 -0800
committerErik Kaneda <erik.kaneda@intel.com>2021-02-04 10:26:08 -0800
commitda7fbae4703de44b0b6e73363600bb49606b931a (patch)
tree51e68173809371a8998db86763519dbbfb426610 /source/compiler/aslmessages.c
parent475c5e89f8f701ccdfee6ca567e33c854ecd6c9e (diff)
downloadacpica-da7fbae4703de44b0b6e73363600bb49606b931a.tar.gz
ACPI 6.4: iASL: deprecate DDBHandleObj keyword
An object of type DDBHandleObj is only useful as a parameter to the Unload operator. Since the Unload operator has been deprecated, there is no use for objects of type DDBHandleObj. Add a compiler warning to indicate that this keyword is now deprecated and useless. Signed-off-by: Erik Kaneda <erik.kaneda@intel.com>
Diffstat (limited to 'source/compiler/aslmessages.c')
-rw-r--r--source/compiler/aslmessages.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/compiler/aslmessages.c b/source/compiler/aslmessages.c
index 0037ed4e4..6b0378ae4 100644
--- a/source/compiler/aslmessages.c
+++ b/source/compiler/aslmessages.c
@@ -384,7 +384,8 @@ const char *AslCompilerMsgs [] =
/* ASL_MSG_EXTERNAL_FOUND_HERE */ "External declaration below ",
/* ASL_MSG_LOWER_CASE_NAMESEG */ "At least one lower case letter found in NameSeg, ASL is case insensitive - converting to upper case",
/* ASL_MSG_LOWER_CASE_NAMEPATH */ "At least one lower case letter found in NamePath, ASL is case insensitive - converting to upper case",
-/* ASL_MSG_UUID_NOT_FOUND */ "Unknown UUID string"
+/* ASL_MSG_UUID_NOT_FOUND */ "Unknown UUID string",
+/* ASL_MSG_LEGACY_DDB_TYPE */ "DDBHandleObj has been deprecated along with the Unload operator. DDBHandlObj objects are only used in Unload"
};
/* Table compiler */