patch-2.4.23 linux-2.4.23/drivers/acpi/events/evregion.c
Next file: linux-2.4.23/drivers/acpi/executer/exconfig.c
Previous file: linux-2.4.23/drivers/acpi/events/evgpe.c
Back to the patch index
Back to the overall index
- Lines: 27
- Date:
2003-11-28 10:26:19.000000000 -0800
- Orig file:
linux-2.4.22/drivers/acpi/events/evregion.c
- Orig date:
2003-08-25 04:44:41.000000000 -0700
diff -urN linux-2.4.22/drivers/acpi/events/evregion.c linux-2.4.23/drivers/acpi/events/evregion.c
@@ -382,7 +382,7 @@
union acpi_operand_object *obj_desc;
union acpi_operand_object **last_obj_ptr;
acpi_adr_space_setup region_setup;
- void *region_context;
+ void **region_context;
union acpi_operand_object *region_obj2;
acpi_status status;
@@ -394,7 +394,7 @@
if (!region_obj2) {
return_VOID;
}
- region_context = region_obj2->extra.region_context;
+ region_context = ®ion_obj2->extra.region_context;
/* Get the address handler from the region object */
@@ -450,7 +450,7 @@
region_setup = handler_obj->address_space.setup;
status = region_setup (region_obj, ACPI_REGION_DEACTIVATE,
- handler_obj->address_space.context, ®ion_context);
+ handler_obj->address_space.context, region_context);
/* Init routine may fail, Just ignore errors */
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)