summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/exsystem.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/dev/acpica/exsystem.c')
-rw-r--r--sys/contrib/dev/acpica/exsystem.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/contrib/dev/acpica/exsystem.c b/sys/contrib/dev/acpica/exsystem.c
index 36380f9..ae38ec8 100644
--- a/sys/contrib/dev/acpica/exsystem.c
+++ b/sys/contrib/dev/acpica/exsystem.c
@@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: exsystem - Interface to OS services
- * $Revision: 75 $
+ * $Revision: 76 $
*
*****************************************************************************/
@@ -212,7 +212,7 @@ AcpiExSystemDoStall (
AcpiExExitInterpreter ();
- AcpiOsStall (HowLong);
+ AcpiOsSleep (0, (HowLong / 1000) + 1);
/* And now we must get the interpreter again */
@@ -221,7 +221,7 @@ AcpiExSystemDoStall (
else
{
- AcpiOsSleep (0, (HowLong / 1000) + 1);
+ AcpiOsStall (HowLong);
}
return (Status);
OpenPOWER on IntegriCloud