diff options
Diffstat (limited to 'drivers/acpi/events/evregion.c')
-rw-r--r-- | drivers/acpi/events/evregion.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/acpi/events/evregion.c b/drivers/acpi/events/evregion.c index eb29e96f053c..edf9d2e1dff9 100644 --- a/drivers/acpi/events/evregion.c +++ b/drivers/acpi/events/evregion.c | |||
@@ -261,7 +261,8 @@ acpi_ev_execute_reg_method(union acpi_operand_object *region_obj, u32 function) | |||
261 | * Function - Read or Write operation | 261 | * Function - Read or Write operation |
262 | * Address - Where in the space to read or write | 262 | * Address - Where in the space to read or write |
263 | * bit_width - Field width in bits (8, 16, 32, or 64) | 263 | * bit_width - Field width in bits (8, 16, 32, or 64) |
264 | * Value - Pointer to in or out value | 264 | * Value - Pointer to in or out value, must be |
265 | * full 64-bit acpi_integer | ||
265 | * | 266 | * |
266 | * RETURN: Status | 267 | * RETURN: Status |
267 | * | 268 | * |
@@ -274,7 +275,7 @@ acpi_status | |||
274 | acpi_ev_address_space_dispatch(union acpi_operand_object *region_obj, | 275 | acpi_ev_address_space_dispatch(union acpi_operand_object *region_obj, |
275 | u32 function, | 276 | u32 function, |
276 | acpi_physical_address address, | 277 | acpi_physical_address address, |
277 | u32 bit_width, void *value) | 278 | u32 bit_width, acpi_integer * value) |
278 | { | 279 | { |
279 | acpi_status status; | 280 | acpi_status status; |
280 | acpi_status status2; | 281 | acpi_status status2; |
@@ -1007,7 +1008,7 @@ acpi_ev_execute_reg_methods(struct acpi_namespace_node *node, | |||
1007 | * | 1008 | * |
1008 | * PARAMETERS: walk_namespace callback | 1009 | * PARAMETERS: walk_namespace callback |
1009 | * | 1010 | * |
1010 | * DESCRIPTION: Run _REg method for region objects of the requested space_iD | 1011 | * DESCRIPTION: Run _REG method for region objects of the requested space_iD |
1011 | * | 1012 | * |
1012 | ******************************************************************************/ | 1013 | ******************************************************************************/ |
1013 | 1014 | ||