|
@@ -52,7 +52,7 @@ acpi_status acpi_ut_mutex_initialize(void)
|
|
|
return_ACPI_STATUS (status);
|
|
|
}
|
|
|
|
|
|
- status = acpi_os_create_lock (&acpi_gbl_hardware_lock);
|
|
|
+ status = acpi_os_create_raw_lock(&acpi_gbl_hardware_lock);
|
|
|
if (ACPI_FAILURE (status)) {
|
|
|
return_ACPI_STATUS (status);
|
|
|
}
|
|
@@ -109,7 +109,7 @@ void acpi_ut_mutex_terminate(void)
|
|
|
/* Delete the spinlocks */
|
|
|
|
|
|
acpi_os_delete_lock(acpi_gbl_gpe_lock);
|
|
|
- acpi_os_delete_lock(acpi_gbl_hardware_lock);
|
|
|
+ acpi_os_delete_raw_lock(acpi_gbl_hardware_lock);
|
|
|
acpi_os_delete_lock(acpi_gbl_reference_count_lock);
|
|
|
|
|
|
/* Delete the reader/writer lock */
|