diff options
author | Bob Moore <robert.moore@intel.com> | 2013-01-25 06:41:16 +0100 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-01-25 13:30:48 +0100 |
commit | 5e30a96e47f99c63c04a0e7949d896cba80dd594 (patch) | |
tree | 7bb970786c131499f5aca55703260ac7dc4032e1 /drivers/acpi/acpica/hwgpe.c | |
parent | ACPICA: iASL/Disassembler: Add option to ignore NOOP opcodes/operators (diff) | |
download | linux-5e30a96e47f99c63c04a0e7949d896cba80dd594.tar.xz linux-5e30a96e47f99c63c04a0e7949d896cba80dd594.zip |
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>
Diffstat (limited to 'drivers/acpi/acpica/hwgpe.c')
-rw-r--r-- | drivers/acpi/acpica/hwgpe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/hwgpe.c b/drivers/acpi/acpica/hwgpe.c index d84fd8399226..20d02e93c990 100644 --- a/drivers/acpi/acpica/hwgpe.c +++ b/drivers/acpi/acpica/hwgpe.c @@ -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); } |