diff options
author | Bob Moore <robert.moore@intel.com> | 2009-02-18 02:10:07 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-03-26 16:38:30 -0400 |
commit | 9892dd23cbbfab1f7d4818622296e415979a9c77 (patch) | |
tree | ae729299168fa2403c7a180da33b8091da51936b /include/acpi | |
parent | ec41f193eadb6301f3c052b5e0dbc0b5636982e8 (diff) |
ACPICA: Optimize ACPI register locking
Removed locking for reads from the ACPI bit registers in PM1
Status, Enable, Control, and PM2 Control. The lock is not required
when reading the single-bit registers. The acpi_get_register_unlocked
function is no longer needed and has been removed. This will
improve performance for reads on these registers. ACPICA BZ 760.
http://www.acpica.org/bugzilla/show_bug.cgi?id=760
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 'include/acpi')
-rw-r--r-- | include/acpi/acpixf.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h index e10c89691043..325d4b073aca 100644 --- a/include/acpi/acpixf.h +++ b/include/acpi/acpixf.h | |||
@@ -347,8 +347,6 @@ acpi_status acpi_reset(void); | |||
347 | 347 | ||
348 | acpi_status acpi_get_register(u32 register_id, u32 * return_value); | 348 | acpi_status acpi_get_register(u32 register_id, u32 * return_value); |
349 | 349 | ||
350 | acpi_status acpi_get_register_unlocked(u32 register_id, u32 *return_value); | ||
351 | |||
352 | acpi_status acpi_set_register(u32 register_id, u32 value); | 350 | acpi_status acpi_set_register(u32 register_id, u32 value); |
353 | 351 | ||
354 | acpi_status acpi_set_firmware_waking_vector(u32 physical_address); | 352 | acpi_status acpi_set_firmware_waking_vector(u32 physical_address); |