patch-2.4.23 linux-2.4.23/drivers/acpi/executer/excreate.c
Next file: linux-2.4.23/drivers/acpi/executer/exfield.c
Previous file: linux-2.4.23/drivers/acpi/executer/exconfig.c
Back to the patch index
Back to the overall index
- Lines: 57
- Date:
2003-11-28 10:26:19.000000000 -0800
- Orig file:
linux-2.4.22/drivers/acpi/executer/excreate.c
- Orig date:
2003-08-25 04:44:41.000000000 -0700
diff -urN linux-2.4.22/drivers/acpi/executer/excreate.c linux-2.4.23/drivers/acpi/executer/excreate.c
@@ -286,7 +286,7 @@
ACPI_FUNCTION_TRACE ("ex_create_region");
- /* Get the Node from the object stack */
+ /* Get the Namespace Node */
node = walk_state->op->common.node;
@@ -311,7 +311,6 @@
ACPI_DEBUG_PRINT ((ACPI_DB_LOAD, "Region Type - %s (%X)\n",
acpi_ut_get_region_name (region_space), region_space));
-
/* Create the region descriptor */
obj_desc = acpi_ut_create_internal_object (ACPI_TYPE_REGION);
@@ -375,6 +374,7 @@
ACPI_FUNCTION_TRACE ("ex_create_table_region");
+
/* Get the Node from the object stack */
node = walk_state->op->common.node;
@@ -392,7 +392,6 @@
status = acpi_tb_find_table (operand[1]->string.pointer,
operand[2]->string.pointer,
operand[3]->string.pointer, &table);
-
if (ACPI_FAILURE (status)) {
return_ACPI_STATUS (status);
}
@@ -489,7 +488,6 @@
status = acpi_ns_attach_object ((struct acpi_namespace_node *) operand[0],
obj_desc, ACPI_TYPE_PROCESSOR);
-
/* Remove local reference to the object */
acpi_ut_remove_reference (obj_desc);
@@ -540,7 +538,6 @@
status = acpi_ns_attach_object ((struct acpi_namespace_node *) operand[0],
obj_desc, ACPI_TYPE_POWER);
-
/* Remove local reference to the object */
acpi_ut_remove_reference (obj_desc);
@@ -609,7 +606,6 @@
obj_desc->method.concurrency = (u8)
(((method_flags & METHOD_FLAGS_SYNCH_LEVEL) >> 4) + 1);
}
-
else {
obj_desc->method.concurrency = INFINITE_CONCURRENCY;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)