diff options
author | Colin Ian King <[email protected]> | 2012-11-29 11:53:16 +0000 |
---|---|---|
committer | Rafael J. Wysocki <[email protected]> | 2013-01-26 00:34:21 +0100 |
commit | 7e3cf246b532a640ff1176d0b988aa0a9338e36f (patch) | |
tree | f733f5ccbd00a658392f2e0bbee3c4ef821b806e | |
parent | c628423777d9df5e48ea8c5695aacd105cf4f768 (diff) |
ACPI thermal: remove unnecessary newline from exception message
ACPI_EXCEPTION() already appends a newline, so there is no
need for the thermal trip point message to include one too.
Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
-rw-r--r-- | drivers/acpi/thermal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c index 506fbd4b5733..f46c44048e44 100644 --- a/drivers/acpi/thermal.c +++ b/drivers/acpi/thermal.c @@ -288,7 +288,7 @@ do { \ if (flags != ACPI_TRIPS_INIT) \ ACPI_EXCEPTION((AE_INFO, AE_ERROR, \ "ACPI thermal trip point %s changed\n" \ - "Please send acpidump to [email protected]\n", str)); \ + "Please send acpidump to [email protected]", str)); \ } while (0) static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag) |