Revert fixing warnings in acpica.

This is an external library so it should not be modified. It should be
moved to src/libs to make this clear, or even better, be outsourced as a
package.
This commit is contained in:
Adrien Destugues 2014-11-02 09:40:19 +01:00
parent 0a9c902921
commit a7459df4c9
2 changed files with 2 additions and 2 deletions

View File

@ -259,7 +259,7 @@ AcpiUtDeleteInternalObj (
/* Global Lock has extra semaphore */
(void) AcpiOsDeleteSemaphore (AcpiGbl_GlobalLockSemaphore);
AcpiGbl_GlobalLockSemaphore = 0;
AcpiGbl_GlobalLockSemaphore = NULL;
AcpiOsDeleteMutex (Object->Mutex.OsMutex);
AcpiGbl_GlobalLockMutex = NULL;

View File

@ -283,7 +283,7 @@ AcpiUtInitGlobals (
/* Global Lock support */
AcpiGbl_GlobalLockSemaphore = 0;
AcpiGbl_GlobalLockSemaphore = NULL;
AcpiGbl_GlobalLockMutex = NULL;
AcpiGbl_GlobalLockAcquired = FALSE;
AcpiGbl_GlobalLockHandle = 0;