diff options
Diffstat (limited to 'source/components/namespace/nseval.c')
-rw-r--r-- | source/components/namespace/nseval.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source/components/namespace/nseval.c b/source/components/namespace/nseval.c index 8262d992fec5..0dbac5bf0f9c 100644 --- a/source/components/namespace/nseval.c +++ b/source/components/namespace/nseval.c @@ -259,6 +259,12 @@ AcpiNsEvaluate ( return_ACPI_STATUS (AE_NO_MEMORY); } + /* Optional object evaluation log */ + + ACPI_DEBUG_PRINT_RAW ((ACPI_DB_EVALUATION, + "%-26s: %s (%s)\n", " Enter evaluation", + &Info->FullPathname[1], AcpiUtGetTypeName (Info->Node->Type))); + /* Count the number of arguments being passed in */ Info->ParamCount = 0; @@ -445,6 +451,12 @@ AcpiNsEvaluate ( Info->RelativePathname)); Cleanup: + /* Optional object evaluation log */ + + ACPI_DEBUG_PRINT_RAW ((ACPI_DB_EVALUATION, + "%-26s: %s\n", " Exit evaluation", + &Info->FullPathname[1])); + /* * Namespace was unlocked by the handling AcpiNs* function, so we * just free the pathname and return |