diff options
author | Len Brown <len.brown@intel.com> | 2011-07-31 13:23:49 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-03-21 00:46:39 -0400 |
commit | cf450136bfde77c7f95065c91bffded4aa7fa731 (patch) | |
tree | 4776fe98f6f541c8b8a064198a35da2443d29f2a /drivers/acpi/acpica/hwxface.c | |
parent | c16fa4f2ad19908a47c63d8fa436a1178438c7e7 (diff) |
ACPI: ignore FADT reset-reg-sup flag
we check that the address is non-zero later anyway.
https://bugzilla.kernel.org/show_bug.cgi?id=11533
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/hwxface.c')
-rw-r--r-- | drivers/acpi/acpica/hwxface.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/hwxface.c b/drivers/acpi/acpica/hwxface.c index 9d38eb6c0d0b..fe1fb6366aa8 100644 --- a/drivers/acpi/acpica/hwxface.c +++ b/drivers/acpi/acpica/hwxface.c | |||
@@ -74,8 +74,7 @@ acpi_status acpi_reset(void) | |||
74 | 74 | ||
75 | /* Check if the reset register is supported */ | 75 | /* Check if the reset register is supported */ |
76 | 76 | ||
77 | if (!(acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER) || | 77 | if (!reset_reg->address) { |
78 | !reset_reg->address) { | ||
79 | return_ACPI_STATUS(AE_NOT_EXIST); | 78 | return_ACPI_STATUS(AE_NOT_EXIST); |
80 | } | 79 | } |
81 | 80 | ||