diff options
author | msmith <msmith@FreeBSD.org> | 2001-05-29 19:52:40 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 2001-05-29 19:52:40 +0000 |
commit | 96a626e3c30fd1a1c51f65324efe1eef0da987c8 (patch) | |
tree | 613098a56e447c6040b8a859eee253beaf749bc0 /sys/contrib/dev/acpica/psxface.c | |
parent | 7bec4652bbd74dbd86d79e3f9c52cf70f6fa1fcd (diff) | |
parent | bc4d4229dc8150c1877e8673fb6be5be18487b6d (diff) | |
download | FreeBSD-src-96a626e3c30fd1a1c51f65324efe1eef0da987c8.zip FreeBSD-src-96a626e3c30fd1a1c51f65324efe1eef0da987c8.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r77424,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'sys/contrib/dev/acpica/psxface.c')
-rw-r--r-- | sys/contrib/dev/acpica/psxface.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/contrib/dev/acpica/psxface.c b/sys/contrib/dev/acpica/psxface.c index 00248b1..acbb3e8 100644 --- a/sys/contrib/dev/acpica/psxface.c +++ b/sys/contrib/dev/acpica/psxface.c @@ -1,7 +1,7 @@ /****************************************************************************** * * Module Name: psxface - Parser external interfaces - * $Revision: 40 $ + * $Revision: 44 $ * *****************************************************************************/ @@ -124,7 +124,7 @@ #include "acnamesp.h" -#define _COMPONENT PARSER +#define _COMPONENT ACPI_PARSER MODULE_NAME ("psxface") @@ -176,7 +176,7 @@ AcpiPsxExecute ( /* Init for new method, wait on concurrency semaphore */ - Status = AcpiDsBeginMethodExecution (MethodNode, ObjDesc); + Status = AcpiDsBeginMethodExecution (MethodNode, ObjDesc, NULL); if (ACPI_FAILURE (Status)) { return_ACPI_STATUS (Status); @@ -191,7 +191,7 @@ AcpiPsxExecute ( for (i = 0; Params[i]; i++) { - AcpiCmAddReference (Params[i]); + AcpiUtAddReference (Params[i]); } } @@ -200,8 +200,8 @@ AcpiPsxExecute ( * named objects that it creates into the namespace */ - DEBUG_PRINT (ACPI_INFO, - ("PsxExecute: **** Begin Method Execution **** Entry=%p obj=%p\n", + DEBUG_PRINTP (ACPI_INFO, + ("**** Begin Method Execution **** Entry=%p obj=%p\n", MethodNode, ObjDesc)); /* Create and init a Root Node */ @@ -249,7 +249,7 @@ AcpiPsxExecute ( for (i = 0; Params[i]; i++) { - AcpiCmUpdateObjectReference (Params[i], REF_DECREMENT); + AcpiUtUpdateObjectReference (Params[i], REF_DECREMENT); } } @@ -262,7 +262,7 @@ AcpiPsxExecute ( if (*ReturnObjDesc) { - DEBUG_PRINT (ACPI_INFO, ("Method returned ObjDesc=%X\n", + DEBUG_PRINTP (ACPI_INFO, ("Method returned ObjDesc=%X\n", *ReturnObjDesc)); DUMP_STACK_ENTRY (*ReturnObjDesc); |