summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2023-02-07 06:56:15 +0100
committerElyes Haouas <ehaouas@noos.fr>2023-02-10 17:07:58 +0100
commit9be7f17b0efb203eb0c7c41e14e95d62dedeec28 (patch)
tree8cedc59350ff2cb3aff4931f6787aeeac774a97b
parent4827f0f98f1f5bf9882fa85822283cffb40bb583 (diff)
downloadacpica-9be7f17b0efb203eb0c7c41e14e95d62dedeec28.tar.gz
Use ACPI_GET_FUNCTION_NAME
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
-rw-r--r--source/compiler/aslbtypes.c2
-rw-r--r--source/compiler/aslparseop.c2
-rw-r--r--source/compiler/asltree.c2
-rw-r--r--source/compiler/dtexpress.c4
4 files changed, 5 insertions, 5 deletions
diff --git a/source/compiler/aslbtypes.c b/source/compiler/aslbtypes.c
index f7b3fb1be..bc2ac8fd6 100644
--- a/source/compiler/aslbtypes.c
+++ b/source/compiler/aslbtypes.c
@@ -504,7 +504,7 @@ AnGetBtype (
if (!Op)
{
- AcpiOsPrintf ("Null Op in AnGetBtype\n");
+ AcpiOsPrintf ("Null Op in %s\n", ACPI_GET_FUNCTION_NAME);
return (ACPI_UINT32_MAX);
}
diff --git a/source/compiler/aslparseop.c b/source/compiler/aslparseop.c
index ab81ac286..e3c6aef7c 100644
--- a/source/compiler/aslparseop.c
+++ b/source/compiler/aslparseop.c
@@ -861,7 +861,7 @@ TrAllocateOp (
}
AslGbl_CommentState.LatestParseOp = Op;
- CvDbgPrint ("TrAllocateOp=Set latest parse op to this op.\n");
+ CvDbgPrint ("%s=Set latest parse op to this op.\n", ACPI_GET_FUNCTION_NAME);
CvDbgPrint (" Op->Asl.ParseOpName = %s\n",
AslGbl_CommentState.LatestParseOp->Asl.ParseOpName);
CvDbgPrint (" Op->Asl.ParseOpcode = 0x%x\n", ParseOpcode);
diff --git a/source/compiler/asltree.c b/source/compiler/asltree.c
index 9cf49269f..f6497bd83 100644
--- a/source/compiler/asltree.c
+++ b/source/compiler/asltree.c
@@ -624,7 +624,7 @@ TrLinkOpChildren (
if (AcpiGbl_CaptureComments)
{
AslGbl_CommentState.LatestParseOp = Op;
- CvDbgPrint ("TrLinkOpChildren=====Set latest parse op to this op.\n");
+ CvDbgPrint ("%s=====Set latest parse op to this op.\n", ACPI_GET_FUNCTION_NAME);
}
return (Op);
diff --git a/source/compiler/dtexpress.c b/source/compiler/dtexpress.c
index fd292d8fe..9e8d1116a 100644
--- a/source/compiler/dtexpress.c
+++ b/source/compiler/dtexpress.c
@@ -482,8 +482,8 @@ DtInsertLabelField (
{
DbgPrint (ASL_DEBUG_OUTPUT,
- "DtInsertLabelField: Found Label : %s at output table offset %X\n",
- Field->Value, Field->TableOffset);
+ "%s: Found Label : %s at output table offset %X\n",
+ ACPI_GET_FUNCTION_NAME, Field->Value, Field->TableOffset);
Field->NextLabel = AslGbl_LabelList;
AslGbl_LabelList = Field;