aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/timer/hpet.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/timer/hpet.c')
-rw-r--r--sys/dev/timer/hpet.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/dev/timer/hpet.c b/sys/dev/timer/hpet.c
index ab30f63..9e9180f 100644
--- a/sys/dev/timer/hpet.c
+++ b/sys/dev/timer/hpet.c
@@ -128,6 +128,18 @@ hpet_msleep(size_t ms)
}
int
+hpet_usleep(size_t us)
+{
+ return hpet_sleep(us, 1000000000);
+}
+
+int
+hpet_nsleep(size_t ns)
+{
+ return hpet_sleep(ns, 1000000);
+}
+
+int
hpet_init(void)
{
struct acpi_gas *gas;