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; }