diff options
author | Zhihui Zhang <zzhsuny@gmail.com> | 2014-03-29 09:25:47 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-04-07 08:00:49 -0400 |
commit | ee17fdf24bf815650c87b3bb35fbab42681523a8 (patch) | |
tree | 9cc3a461e9bb79cb2be67018f30131da7e4a1e48 | |
parent | 70f6c087573eeb406252ff8d98f511eb5f71496e (diff) |
ACPI / thermal: Fix wrong variable usage in debug statement
A debug statement in acpi_thermal_trips_update() uses a wrong trip
point (tz->trips.critical instead of tz->trips.hot) to get the
temperature value from. Fix that.
Signed-off-by: Zhihui Zhang <zzhsuny@gmail.com>
[rjw: Subject and changelog]
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 964068553334..c1e31a41f949 100644 --- a/drivers/acpi/thermal.c +++ b/drivers/acpi/thermal.c | |||
@@ -344,7 +344,7 @@ static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag) | |||
344 | tz->trips.hot.flags.valid = 1; | 344 | tz->trips.hot.flags.valid = 1; |
345 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 345 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
346 | "Found hot threshold [%lu]\n", | 346 | "Found hot threshold [%lu]\n", |
347 | tz->trips.critical.temperature)); | 347 | tz->trips.hot.temperature)); |
348 | } | 348 | } |
349 | } | 349 | } |
350 | 350 | ||