Skip to content

Commit

Permalink
ACPI: Export symbols for ACPI_ERROR/EXCEPTION/WARNING macros
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Renninger <trenn@suse.de>
Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Thomas Renninger authored and Len Brown committed Jun 27, 2006
1 parent a6fc672 commit be63c92
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion drivers/acpi/utilities/utmisc.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
* POSSIBILITY OF SUCH DAMAGES.
*/

#include <linux/module.h>

#include <acpi/acpi.h>
#include <acpi/acnamesp.h>

Expand Down Expand Up @@ -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,
Expand All @@ -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, ...)
Expand All @@ -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, ...)
{
Expand Down

0 comments on commit be63c92

Please sign in to comment.