patch-2.4.6 linux/drivers/acpi/parser/psxface.c

Next file: linux/drivers/acpi/power.c
Previous file: linux/drivers/acpi/parser/pswalk.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.4.5/linux/drivers/acpi/parser/psxface.c linux/drivers/acpi/parser/psxface.c
@@ -1,7 +1,7 @@
 /******************************************************************************
  *
  * Module Name: psxface - Parser external interfaces
- *              $Revision: 40 $
+ *              $Revision: 44 $
  *
  *****************************************************************************/
 
@@ -32,7 +32,7 @@
 #include "acnamesp.h"
 
 
-#define _COMPONENT          PARSER
+#define _COMPONENT          ACPI_PARSER
 	 MODULE_NAME         ("psxface")
 
 
@@ -79,7 +79,7 @@
 
 	/* Init for new method, wait on concurrency semaphore */
 
-	status = acpi_ds_begin_method_execution (method_node, obj_desc);
+	status = acpi_ds_begin_method_execution (method_node, obj_desc, NULL);
 	if (ACPI_FAILURE (status)) {
 		return (status);
 	}
@@ -91,7 +91,7 @@
 		 */
 
 		for (i = 0; params[i]; i++) {
-			acpi_cm_add_reference (params[i]);
+			acpi_ut_add_reference (params[i]);
 		}
 	}
 
@@ -141,7 +141,7 @@
 		/* Take away the extra reference that we gave the parameters above */
 
 		for (i = 0; params[i]; i++) {
-			acpi_cm_update_object_reference (params[i], REF_DECREMENT);
+			acpi_ut_update_object_reference (params[i], REF_DECREMENT);
 		}
 	}
 

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)