mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
ACPICA: Remove some code duplication from acpi_ev_address_space_dispatch
ACPICA commit 383f50ff8cb7424ca16a6c0234f103b41d4a783e The handling of the space_id == ACPI_ADR_SPACE_GSBUS and space_id == ACPI_ADR_SPACE_GPIO cases is almost identical, fold the 2 cases into 1 to remove some code duplication. Link: https://github.com/acpica/acpica/commit/383f50ff Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Erik Kaneda <erik.kaneda@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
committed by
Rafael J. Wysocki
parent
c27f3d011b
commit
8f6493d1b8
@@ -244,7 +244,8 @@ acpi_ev_address_space_dispatch(union acpi_operand_object *region_obj,
|
|||||||
* the previous Connection)
|
* the previous Connection)
|
||||||
* 2) bit_width is the actual bit length of the field (number of pins)
|
* 2) bit_width is the actual bit length of the field (number of pins)
|
||||||
*/
|
*/
|
||||||
if ((region_obj->region.space_id == ACPI_ADR_SPACE_GSBUS) &&
|
if ((region_obj->region.space_id == ACPI_ADR_SPACE_GSBUS ||
|
||||||
|
region_obj->region.space_id == ACPI_ADR_SPACE_GPIO) &&
|
||||||
context && field_obj) {
|
context && field_obj) {
|
||||||
|
|
||||||
status =
|
status =
|
||||||
@@ -260,26 +261,12 @@ acpi_ev_address_space_dispatch(union acpi_operand_object *region_obj,
|
|||||||
context->connection = field_obj->field.resource_buffer;
|
context->connection = field_obj->field.resource_buffer;
|
||||||
context->length = field_obj->field.resource_length;
|
context->length = field_obj->field.resource_length;
|
||||||
context->access_length = field_obj->field.access_length;
|
context->access_length = field_obj->field.access_length;
|
||||||
}
|
|
||||||
if ((region_obj->region.space_id == ACPI_ADR_SPACE_GPIO) &&
|
|
||||||
context && field_obj) {
|
|
||||||
|
|
||||||
status =
|
if (region_obj->region.space_id == ACPI_ADR_SPACE_GPIO) {
|
||||||
acpi_os_acquire_mutex(context_mutex, ACPI_WAIT_FOREVER);
|
|
||||||
if (ACPI_FAILURE(status)) {
|
|
||||||
goto re_enter_interpreter;
|
|
||||||
}
|
|
||||||
|
|
||||||
context_locked = TRUE;
|
|
||||||
|
|
||||||
/* Get the Connection (resource_template) buffer */
|
|
||||||
|
|
||||||
context->connection = field_obj->field.resource_buffer;
|
|
||||||
context->length = field_obj->field.resource_length;
|
|
||||||
context->access_length = field_obj->field.access_length;
|
|
||||||
address = field_obj->field.pin_number_index;
|
address = field_obj->field.pin_number_index;
|
||||||
bit_width = field_obj->field.bit_length;
|
bit_width = field_obj->field.bit_length;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Call the handler */
|
/* Call the handler */
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user