diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2006-02-17 17:36:00 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2006-02-17 17:36:00 +0000 |
commit | 9feddf7310b0081ed0217a504a11ae9f3c0b4a4c (patch) | |
tree | 73405ec1bb828663137377126329105d066da183 /sys/dev/acpi/acpivar.h | |
parent | 91e797ab84bb2ad882731a0c53fd78b2d004dfe7 (diff) |
Add a generic delay function as per the ACPI spec.
from jordan@
Diffstat (limited to 'sys/dev/acpi/acpivar.h')
-rw-r--r-- | sys/dev/acpi/acpivar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/acpi/acpivar.h b/sys/dev/acpi/acpivar.h index e90419935e9..dc0bb680413 100644 --- a/sys/dev/acpi/acpivar.h +++ b/sys/dev/acpi/acpivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acpivar.h,v 1.14 2006/02/03 23:55:47 jordan Exp $ */ +/* $OpenBSD: acpivar.h,v 1.15 2006/02/17 17:35:59 marco Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -163,6 +163,7 @@ void acpi_powerdown(void); #define ACPI_IOREAD 0 #define ACPI_IOWRITE 1 +void acpi_delay(struct acpi_softc *, int64_t); int acpi_gasio(struct acpi_softc *, int, int, uint64_t, int, int, void *); #endif |