ACPICA: Remove some extraneous newlines in ACPI_ERROR type calls

These macros/functions automatically insert a newline, so the
format string should not contain a newline at the end. (This allows
these functions to add information to the end of the output line.)

Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
Bob Moore
2013-01-25 05:41:16 +00:00
committed by Rafael J. Wysocki
parent d9652b4e8a
commit 5e30a96e47
3 changed files with 3 additions and 3 deletions

View File

@@ -135,7 +135,7 @@ acpi_hw_low_set_gpe(struct acpi_gpe_event_info *gpe_event_info, u32 action)
break;
default:
ACPI_ERROR((AE_INFO, "Invalid GPE Action, %u\n", action));
ACPI_ERROR((AE_INFO, "Invalid GPE Action, %u", action));
return (AE_BAD_PARAMETER);
}