diff options
author | Bob Moore <robert.moore@intel.com> | 2009-02-23 02:02:07 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-03-26 16:38:31 -0400 |
commit | 50ffba1bd3120b069617455545bc27bcf3cf7579 (patch) | |
tree | a4e1e1e22e526ff5067d9fb0fb90e18fccc948a3 /drivers/acpi/acpica/evmisc.c | |
parent | 9892dd23cbbfab1f7d4818622296e415979a9c77 (diff) |
ACPICA: Rename ACPI bit register access functions
Rename acpi_get_register and acpi_set_register to clarify the
purpose of these functions. New names are acpi_read_bit_register
and acpi_write_bit_register.
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/evmisc.c')
-rw-r--r-- | drivers/acpi/acpica/evmisc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/evmisc.c b/drivers/acpi/acpica/evmisc.c index 5f893057bcc6..0e9e12b2f2bb 100644 --- a/drivers/acpi/acpica/evmisc.c +++ b/drivers/acpi/acpica/evmisc.c | |||
@@ -534,8 +534,8 @@ acpi_status acpi_ev_release_global_lock(void) | |||
534 | */ | 534 | */ |
535 | if (pending) { | 535 | if (pending) { |
536 | status = | 536 | status = |
537 | acpi_set_register(ACPI_BITREG_GLOBAL_LOCK_RELEASE, | 537 | acpi_write_bit_register |
538 | 1); | 538 | (ACPI_BITREG_GLOBAL_LOCK_RELEASE, 1); |
539 | } | 539 | } |
540 | 540 | ||
541 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, | 541 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |