diff options
author | Bob Moore <robert.moore@intel.com> | 2013-10-29 09:29:45 +0800 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-10-30 12:24:22 +0100 |
commit | e07fcfd89f9bbbc5f655b85b70e6f9b0bb626bac (patch) | |
tree | f51df8ea58847f0fb01a9803530fddc6eb766269 /include/acpi | |
parent | ab3b24807adabdc32f8a9d5d7d3902e1e744d139 (diff) | |
download | talos-obmc-linux-e07fcfd89f9bbbc5f655b85b70e6f9b0bb626bac.tar.gz talos-obmc-linux-e07fcfd89f9bbbc5f655b85b70e6f9b0bb626bac.zip |
ACPICA: Hardcode access width for the reset register.
The ACPI spec requires the reset register width to be 8, so we
now hardcode it and ignore the FADT value. This provides/maintains
compatibility with other ACPI implementations that have allowed
BIOS code with bad register width values to go unnoticed.
Matthew Garett, Bob Moore, Lv Zheng.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/actypes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index fed5af2bcb93..63909d9c2f7a 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h @@ -349,6 +349,7 @@ typedef u32 acpi_physical_address; #define ACPI_PM1_REGISTER_WIDTH 16 #define ACPI_PM2_REGISTER_WIDTH 8 #define ACPI_PM_TIMER_WIDTH 32 +#define ACPI_RESET_REGISTER_WIDTH 8 /* Names within the namespace are 4 bytes long */ |