Skip to content

Commit

Permalink
Merge branch 'acpi-assorted'
Browse files Browse the repository at this point in the history
* acpi-assorted:
  ACPI: implement acpi_os_get_timer() according the spec
  • Loading branch information
Rafael J. Wysocki committed Jun 29, 2013
2 parents d5ba5b1 + 1061906 commit 5c0b1b2
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions drivers/acpi/osl.c
Original file line number Diff line number Diff line change
Expand Up @@ -835,19 +835,9 @@ void acpi_os_stall(u32 us)
*/
u64 acpi_os_get_timer(void)
{
static u64 t;

#ifdef CONFIG_HPET
/* TBD: use HPET if available */
#endif

#ifdef CONFIG_X86_PM_TIMER
/* TBD: default to PM timer if HPET was not available */
#endif
if (!t)
printk(KERN_ERR PREFIX "acpi_os_get_timer() TBD\n");

return ++t;
u64 time_ns = ktime_to_ns(ktime_get());
do_div(time_ns, 100);
return time_ns;
}

acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
Expand Down

0 comments on commit 5c0b1b2

Please sign in to comment.