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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/contrib/dev/acpica/exsystem.c b/sys/contrib/dev/acpica/exsystem.c
index 3aca04f..bbe57ee 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: 62 $
+ * $Revision: 64 $
*
*****************************************************************************/
@@ -167,7 +167,7 @@ AcpiExSystemWaitSemaphore (
Status = AcpiOsWaitSemaphore (Semaphore, 1, Timeout);
DEBUG_PRINT (TRACE_EXEC, ("*** Thread awake after blocking, %s\n",
- AcpiUtFormatException (Status)));
+ AcpiFormatException (Status)));
/* Reacquire the interpreter */
@@ -207,7 +207,7 @@ AcpiExSystemDoStall (
AcpiExExitInterpreter ();
- AcpiOsSleepUsec (HowLong);
+ AcpiOsStall (HowLong);
/* And now we must get the interpreter again */
@@ -216,7 +216,7 @@ AcpiExSystemDoStall (
else
{
- AcpiOsSleepUsec (HowLong);
+ AcpiOsSleep (0, (HowLong / 1000) + 1);
}
}
OpenPOWER on IntegriCloud