patch-2.4.6 linux/drivers/acpi/dispatcher/dswscope.c
Next file: linux/drivers/acpi/dispatcher/dswstate.c
Previous file: linux/drivers/acpi/dispatcher/dswload.c
Back to the patch index
Back to the overall index
- Lines: 77
- Date:
Wed Jun 20 17:47:39 2001
- Orig file:
v2.4.5/linux/drivers/acpi/dispatcher/dswscope.c
- Orig date:
Mon Jan 22 13:23:42 2001
diff -u --recursive --new-file v2.4.5/linux/drivers/acpi/dispatcher/dswscope.c linux/drivers/acpi/dispatcher/dswscope.c
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: dswscope - Scope stack manipulation
- * $Revision: 42 $
+ * $Revision: 45 $
*
*****************************************************************************/
@@ -29,7 +29,7 @@
#include "acdispat.h"
-#define _COMPONENT NAMESPACE
+#define _COMPONENT ACPI_DISPATCHER
MODULE_NAME ("dswscope")
@@ -60,7 +60,7 @@
scope_info = walk_state->scope_info;
walk_state->scope_info = scope_info->scope.next;
- acpi_cm_delete_generic_state (scope_info);
+ acpi_ut_delete_generic_state (scope_info);
}
}
@@ -80,7 +80,7 @@
ACPI_STATUS
acpi_ds_scope_stack_push (
ACPI_NAMESPACE_NODE *node,
- OBJECT_TYPE_INTERNAL type,
+ ACPI_OBJECT_TYPE8 type,
ACPI_WALK_STATE *walk_state)
{
ACPI_GENERIC_STATE *scope_info;
@@ -95,14 +95,14 @@
/* Make sure object type is valid */
- if (!acpi_aml_validate_object_type (type)) {
+ if (!acpi_ex_validate_object_type (type)) {
REPORT_WARNING (("Ds_scope_stack_push: type code out of range\n"));
}
/* Allocate a new scope object */
- scope_info = acpi_cm_create_generic_state ();
+ scope_info = acpi_ut_create_generic_state ();
if (!scope_info) {
return (AE_NO_MEMORY);
}
@@ -114,7 +114,7 @@
/* Push new scope object onto stack */
- acpi_cm_push_generic_state (&walk_state->scope_info, scope_info);
+ acpi_ut_push_generic_state (&walk_state->scope_info, scope_info);
return (AE_OK);
}
@@ -148,12 +148,12 @@
* Pop scope info object off the stack.
*/
- scope_info = acpi_cm_pop_generic_state (&walk_state->scope_info);
+ scope_info = acpi_ut_pop_generic_state (&walk_state->scope_info);
if (!scope_info) {
return (AE_STACK_UNDERFLOW);
}
- acpi_cm_delete_generic_state (scope_info);
+ acpi_ut_delete_generic_state (scope_info);
return (AE_OK);
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)