|
@@ -41,6 +41,8 @@
|
|
|
* POSSIBILITY OF SUCH DAMAGES.
|
|
|
*/
|
|
|
|
|
|
+#include <linux/module.h>
|
|
|
+
|
|
|
#include <acpi/acpi.h>
|
|
|
#include <acpi/acnamesp.h>
|
|
|
|
|
@@ -948,6 +950,7 @@ acpi_ut_error(char *module_name, u32 line_number, char *format, ...)
|
|
|
acpi_os_vprintf(format, args);
|
|
|
acpi_os_printf(" [%X]\n", ACPI_CA_VERSION);
|
|
|
}
|
|
|
+EXPORT_SYMBOL(acpi_ut_error);
|
|
|
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
|
|
acpi_ut_exception(char *module_name,
|
|
@@ -962,6 +965,7 @@ acpi_ut_exception(char *module_name,
|
|
|
acpi_os_vprintf(format, args);
|
|
|
acpi_os_printf(" [%X]\n", ACPI_CA_VERSION);
|
|
|
}
|
|
|
+EXPORT_SYMBOL(acpi_ut_exception);
|
|
|
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
|
|
acpi_ut_warning(char *module_name, u32 line_number, char *format, ...)
|
|
@@ -974,7 +978,7 @@ acpi_ut_warning(char *module_name, u32 line_number, char *format, ...)
|
|
|
acpi_os_vprintf(format, args);
|
|
|
acpi_os_printf(" [%X]\n", ACPI_CA_VERSION);
|
|
|
}
|
|
|
-
|
|
|
+EXPORT_SYMBOL(acpi_ut_warning);
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
|
|
acpi_ut_info(char *module_name, u32 line_number, char *format, ...)
|
|
|
{
|