From: Len Brown <len.brown@xxxxxxxxx> In linux-2.6.27, we expect WARN() with printk semantics to become available, and we'll be able to simplify this code. Signed-off-by: Len Brown <len.brown@xxxxxxxxx> --- drivers/acpi/utilities/utmisc.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/acpi/utilities/utmisc.c b/drivers/acpi/utilities/utmisc.c index 1f057b7..0a340b0 100644 --- a/drivers/acpi/utilities/utmisc.c +++ b/drivers/acpi/utilities/utmisc.c @@ -1028,6 +1028,7 @@ acpi_ut_error(char *module_name, u32 line_number, char *format, ...) { va_list args; + warn_on_slowpath(module_name, line_number); acpi_os_printf("ACPI Error (%s-%04d): ", module_name, line_number); va_start(args, format); @@ -1042,6 +1043,7 @@ acpi_ut_exception(char *module_name, { va_list args; + warn_on_slowpath(module_name, line_number); acpi_os_printf("ACPI Exception (%s-%04d): %s, ", module_name, line_number, acpi_format_exception(status)); -- 1.5.6.1.89.gd544 -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html