summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpica
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/acpica')
-rw-r--r--sys/dev/acpica/Osd/OsdSchedule.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/dev/acpica/Osd/OsdSchedule.c b/sys/dev/acpica/Osd/OsdSchedule.c
index 9c5195c..ac29c1e 100644
--- a/sys/dev/acpica/Osd/OsdSchedule.c
+++ b/sys/dev/acpica/Osd/OsdSchedule.c
@@ -262,15 +262,7 @@ AcpiOsStall (UINT32 Microseconds)
{
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
- /*
- * Maximum length for stall is 100 us. If longer, assume caller
- * really meant "sleep".
- */
- if (Microseconds <= 100)
- DELAY(Microseconds);
- else
- AcpiOsSleep(Microseconds / 1000, Microseconds % 1000);
-
+ DELAY(Microseconds);
return_VOID;
}
OpenPOWER on IntegriCloud