summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2023-03-21 13:22:16 -0700
committerRobert Moore <Robert.Moore@intel.com>2023-03-21 13:22:16 -0700
commit34d68b15a488b0d3e4a5068786c2bef1415d5c46 (patch)
tree3c6222bdc54cb0c9d3ee476124a044ca6ab2492a /source
parent6c7cbe47a8cd0389ade83e2b66aa8f29e2aa17df (diff)
downloadacpica-34d68b15a488b0d3e4a5068786c2bef1415d5c46.tar.gz
Add ACPI_FUNCTION_NAME macros where appropriate.
Enables GET_FUNCTION_NAME macro(s).
Diffstat (limited to 'source')
-rw-r--r--source/compiler/aslbtypes.c1
-rw-r--r--source/compiler/aslparseop.c2
-rw-r--r--source/compiler/asltree.c1
3 files changed, 4 insertions, 0 deletions
diff --git a/source/compiler/aslbtypes.c b/source/compiler/aslbtypes.c
index 4faba97ff..e2f72d882 100644
--- a/source/compiler/aslbtypes.c
+++ b/source/compiler/aslbtypes.c
@@ -501,6 +501,7 @@ AnGetBtype (
ACPI_PARSE_OBJECT *ReferencedNode;
UINT32 ThisNodeBtype = 0;
+ ACPI_FUNCTION_NAME (AnGetBtype);
if (!Op)
{
diff --git a/source/compiler/aslparseop.c b/source/compiler/aslparseop.c
index c2f6f3de7..38169fee2 100644
--- a/source/compiler/aslparseop.c
+++ b/source/compiler/aslparseop.c
@@ -817,6 +817,8 @@ TrAllocateOp (
ACPI_PARSE_OBJECT *Op;
ACPI_PARSE_OBJECT *LatestOp;
+ ACPI_FUNCTION_NAME (TrAllocateOp);
+
Op = UtParseOpCacheCalloc ();
diff --git a/source/compiler/asltree.c b/source/compiler/asltree.c
index 41811f5da..f390c4f6c 100644
--- a/source/compiler/asltree.c
+++ b/source/compiler/asltree.c
@@ -467,6 +467,7 @@ TrLinkOpChildren (
UINT32 i;
BOOLEAN FirstChild;
+ ACPI_FUNCTION_NAME (TrLinkOpChildren);
va_start (ap, NumChildren);