summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/components/debugger/dbmethod.c
diff options
context:
space:
mode:
authorjkim <jkim@FreeBSD.org>2012-09-19 23:25:24 +0000
committerjkim <jkim@FreeBSD.org>2012-09-19 23:25:24 +0000
commit2851848add470d66b9b6966f9eb4c7d6698416a5 (patch)
tree12889f8250981e5573d1dfc5e18a7d7a6f54fbc7 /sys/contrib/dev/acpica/components/debugger/dbmethod.c
parent56d694b07204b875d67b7772b1ecb02cbff8790e (diff)
downloadFreeBSD-src-2851848add470d66b9b6966f9eb4c7d6698416a5.zip
FreeBSD-src-2851848add470d66b9b6966f9eb4c7d6698416a5.tar.gz
Merge ACPICA 20120913.
Diffstat (limited to 'sys/contrib/dev/acpica/components/debugger/dbmethod.c')
-rw-r--r--sys/contrib/dev/acpica/components/debugger/dbmethod.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/contrib/dev/acpica/components/debugger/dbmethod.c b/sys/contrib/dev/acpica/components/debugger/dbmethod.c
index ee6677d..eb265d3 100644
--- a/sys/contrib/dev/acpica/components/debugger/dbmethod.c
+++ b/sys/contrib/dev/acpica/components/debugger/dbmethod.c
@@ -406,7 +406,7 @@ AcpiDbWalkForExecute (
void **ReturnValue)
{
ACPI_NAMESPACE_NODE *Node = (ACPI_NAMESPACE_NODE *) ObjHandle;
- ACPI_EXECUTE_WALK *Info = (ACPI_EXECUTE_WALK *) Context;
+ ACPI_DB_EXECUTE_WALK *Info = (ACPI_DB_EXECUTE_WALK *) Context;
ACPI_BUFFER ReturnObj;
ACPI_STATUS Status;
char *Pathname;
@@ -506,7 +506,7 @@ void
AcpiDbBatchExecute (
char *CountArg)
{
- ACPI_EXECUTE_WALK Info;
+ ACPI_DB_EXECUTE_WALK Info;
Info.Count = 0;
@@ -523,7 +523,7 @@ AcpiDbBatchExecute (
(void) AcpiWalkNamespace (ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, ACPI_UINT32_MAX,
AcpiDbWalkForExecute, NULL, (void *) &Info, NULL);
- AcpiOsPrintf ("Executed %u predefined names in the namespace\n", Info.Count);
+ AcpiOsPrintf ("Evaluated %u predefined names in the namespace\n", Info.Count);
}
#endif /* ACPI_DEBUGGER */
OpenPOWER on IntegriCloud