diff options
author | Bob Moore <robert.moore@intel.com> | 2011-11-16 00:39:07 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-01-17 03:36:29 -0500 |
commit | 9ce81784c9c0396a6a6be05248928a71134fe60b (patch) | |
tree | cccb8fc3a3514276ed0b1801f7bb26ba2319d62d /drivers/acpi/acpica/exfldio.c | |
parent | ffef68273b6278e98a99dd4051671d4854b20fe0 (diff) |
ACPI 5.0: Implement Connection() and AccessAs() changes
Support within the interpreter and operation region dispatch.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/exfldio.c')
-rw-r--r-- | drivers/acpi/acpica/exfldio.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/acpi/acpica/exfldio.c b/drivers/acpi/acpica/exfldio.c index 2a524fc1e851..cc9c5dfa4c45 100644 --- a/drivers/acpi/acpica/exfldio.c +++ b/drivers/acpi/acpica/exfldio.c | |||
@@ -283,11 +283,12 @@ acpi_ex_access_region(union acpi_operand_object *obj_desc, | |||
283 | 283 | ||
284 | /* Invoke the appropriate address_space/op_region handler */ | 284 | /* Invoke the appropriate address_space/op_region handler */ |
285 | 285 | ||
286 | status = | 286 | status = acpi_ev_address_space_dispatch(rgn_desc, obj_desc, |
287 | acpi_ev_address_space_dispatch(rgn_desc, function, region_offset, | 287 | function, region_offset, |
288 | ACPI_MUL_8(obj_desc->common_field. | 288 | ACPI_MUL_8(obj_desc-> |
289 | access_byte_width), | 289 | common_field. |
290 | value); | 290 | access_byte_width), |
291 | value); | ||
291 | 292 | ||
292 | if (ACPI_FAILURE(status)) { | 293 | if (ACPI_FAILURE(status)) { |
293 | if (status == AE_NOT_IMPLEMENTED) { | 294 | if (status == AE_NOT_IMPLEMENTED) { |