diff options
author | Bob Moore <robert.moore@intel.com> | 2012-02-14 02:22:51 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-03-22 01:44:38 -0400 |
commit | d08310fe0d6bd8c82da94e8d8ef48bdbe14d2bd1 (patch) | |
tree | 71ad591d88cf75e8f5043a1f39927e665d65eeac /include/acpi | |
parent | 2feec47d4c5f80b05f1650f5a24865718978eea4 (diff) |
ACPICA: Move ACPI timer prototypes to public acpixf file
These prototypes were incorrectly declared in achware.h.
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 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h index a28da35ba45e..67cd51c8ee0a 100644 --- a/include/acpi/acpixf.h +++ b/include/acpi/acpixf.h | |||
@@ -419,6 +419,18 @@ acpi_status acpi_leave_sleep_state_prep(u8 sleep_state); | |||
419 | acpi_status acpi_leave_sleep_state(u8 sleep_state); | 419 | acpi_status acpi_leave_sleep_state(u8 sleep_state); |
420 | 420 | ||
421 | /* | 421 | /* |
422 | * ACPI Timer interfaces | ||
423 | */ | ||
424 | #ifdef ACPI_FUTURE_USAGE | ||
425 | acpi_status acpi_get_timer_resolution(u32 *resolution); | ||
426 | |||
427 | acpi_status acpi_get_timer(u32 *ticks); | ||
428 | |||
429 | acpi_status | ||
430 | acpi_get_timer_duration(u32 start_ticks, u32 end_ticks, u32 *time_elapsed); | ||
431 | #endif /* ACPI_FUTURE_USAGE */ | ||
432 | |||
433 | /* | ||
422 | * Error/Warning output | 434 | * Error/Warning output |
423 | */ | 435 | */ |
424 | void ACPI_INTERNAL_VAR_XFACE | 436 | void ACPI_INTERNAL_VAR_XFACE |