summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorMitsuru IWASAKI <iwasaki@FreeBSD.org>2001-09-08 17:03:26 +0000
committerMitsuru IWASAKI <iwasaki@FreeBSD.org>2001-09-08 17:03:26 +0000
commitd983e760a72203fc6593bc1ee2cc8a5b9444de11 (patch)
tree3abc65c1465de37cc5f74c90a1f1c421526f7b62 /sys/dev
parente9dc4f3b7405c69b48892163465f6faf673fb6a1 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/acpica/Osd/OsdSchedule.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/acpica/Osd/OsdSchedule.c b/sys/dev/acpica/Osd/OsdSchedule.c
index feaec998971c..b44671b3f1c4 100644
--- a/sys/dev/acpica/Osd/OsdSchedule.c
+++ b/sys/dev/acpica/Osd/OsdSchedule.c
@@ -143,11 +143,7 @@ AcpiOsStall (UINT32 Microseconds)
{
FUNCTION_TRACE(__func__);
- if (Microseconds > 1000) { /* long enough to be worth the overhead of sleeping */
- AcpiOsSleep(0, Microseconds / 1000);
- } else {
- DELAY(Microseconds);
- }
+ DELAY(Microseconds);
return_VOID;
}