|
@@ -151,6 +151,8 @@ acpi_acquire_mutex(acpi_handle handle, acpi_string pathname, u16 timeout)
|
|
|
return (status);
|
|
|
}
|
|
|
|
|
|
+ACPI_EXPORT_SYMBOL(acpi_acquire_mutex)
|
|
|
+
|
|
|
/*******************************************************************************
|
|
|
*
|
|
|
* FUNCTION: acpi_release_mutex
|
|
@@ -167,7 +169,6 @@ acpi_acquire_mutex(acpi_handle handle, acpi_string pathname, u16 timeout)
|
|
|
* not both.
|
|
|
*
|
|
|
******************************************************************************/
|
|
|
-
|
|
|
acpi_status acpi_release_mutex(acpi_handle handle, acpi_string pathname)
|
|
|
{
|
|
|
acpi_status status;
|
|
@@ -185,3 +186,5 @@ acpi_status acpi_release_mutex(acpi_handle handle, acpi_string pathname)
|
|
|
acpi_os_release_mutex(mutex_obj->mutex.os_mutex);
|
|
|
return (AE_OK);
|
|
|
}
|
|
|
+
|
|
|
+ACPI_EXPORT_SYMBOL(acpi_release_mutex)
|