diff options
| author | Colin Ian King <colin.king@canonical.com> | 2012-11-29 11:53:16 +0000 | 
|---|---|---|
| committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-01-26 00:34:21 +0100 | 
| commit | 7e3cf246b532a640ff1176d0b988aa0a9338e36f (patch) | |
| tree | f733f5ccbd00a658392f2e0bbee3c4ef821b806e | |
| parent | c628423777d9df5e48ea8c5695aacd105cf4f768 (diff) | |
| download | olio-linux-3.10-7e3cf246b532a640ff1176d0b988aa0a9338e36f.tar.xz olio-linux-3.10-7e3cf246b532a640ff1176d0b988aa0a9338e36f.zip  | |
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 <colin.king@canonical.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
| -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 506fbd4b573..f46c44048e4 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 linux-acpi@vger.kernel.org\n", str)); \ +		"Please send acpidump to linux-acpi@vger.kernel.org", str)); \  } while (0)  static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag)  |