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/exconfig.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/exconfig.c')
-rw-r--r-- | drivers/acpi/acpica/exconfig.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/acpica/exconfig.c b/drivers/acpi/acpica/exconfig.c index 745a42b401f5..efe41f736fab 100644 --- a/drivers/acpi/acpica/exconfig.c +++ b/drivers/acpi/acpica/exconfig.c | |||
@@ -297,9 +297,9 @@ acpi_ex_region_read(union acpi_operand_object *obj_desc, u32 length, u8 *buffer) | |||
297 | /* Bytewise reads */ | 297 | /* Bytewise reads */ |
298 | 298 | ||
299 | for (i = 0; i < length; i++) { | 299 | for (i = 0; i < length; i++) { |
300 | status = acpi_ev_address_space_dispatch(obj_desc, ACPI_READ, | 300 | status = |
301 | region_offset, 8, | 301 | acpi_ev_address_space_dispatch(obj_desc, NULL, ACPI_READ, |
302 | &value); | 302 | region_offset, 8, &value); |
303 | if (ACPI_FAILURE(status)) { | 303 | if (ACPI_FAILURE(status)) { |
304 | return status; | 304 | return status; |
305 | } | 305 | } |