diff options
author | Bob Moore <robert.moore@intel.com> | 2011-04-13 09:22:04 +0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2011-05-10 06:16:12 +0400 |
commit | e2066ca1b211ff08325c98be9fb8ad95affbaba8 (patch) | |
tree | 9e56ece55f633e9330579ec0f3ddf6e1b1995de6 /drivers/acpi/acpica/evrgnini.c | |
parent | 07aa99e9df2184e78068f7d5414e29e4a5a1b452 (diff) | |
download | linux-e2066ca1b211ff08325c98be9fb8ad95affbaba8.tar.xz |
ACPICA: Execute an orphan _REG method under the EC device
This change will force the execution of a _REG method underneath
the EC device even if there is no corresponding operation region
of type EmbeddedControl. Fixes a problem seen on some machines
and apparently is compatible with Windows behavior.
http://www.acpica.org/bugzilla/show_bug.cgi?id=875
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/evrgnini.c')
-rw-r--r-- | drivers/acpi/acpica/evrgnini.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/evrgnini.c b/drivers/acpi/acpica/evrgnini.c index 9659cee6093e..55a5d35ef34a 100644 --- a/drivers/acpi/acpica/evrgnini.c +++ b/drivers/acpi/acpica/evrgnini.c @@ -637,7 +637,7 @@ acpi_ev_initialize_region(union acpi_operand_object *region_obj, status = acpi_ev_execute_reg_method - (region_obj, 1); + (region_obj, ACPI_REG_CONNECT); if (acpi_ns_locked) { status = |