aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlkka Koskinen <ilkka.koskinen@linux.intel.com>2014-12-08 21:01:31 -0500
committerZhang Rui <rui.zhang@intel.com>2014-12-09 01:05:05 -0500
commite413ad7cca9f541659ac0ddf8f37e2bcfade365a (patch)
tree3d24725a6528bda480422059b2f35a9b7321d21e
parent341203167f9138073853cecd1f02d180bf9924ca (diff)
Thermal/int340x: Clear the error value of the last acpi_bus_get_device() call
Previously the return value of the last acpi_bus_get_device() was returned. However, since we only report those issues, it should be cleared to continue as expected. Signed-off-by: Ilkka Koskinen <ilkka.koskinen@linux.intel.com> Acked-by: Jacob Pan <jacob.jun.pan@linux.intel.com>
-rw-r--r--drivers/thermal/int340x_thermal/acpi_thermal_rel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/thermal/int340x_thermal/acpi_thermal_rel.c b/drivers/thermal/int340x_thermal/acpi_thermal_rel.c
index ac5c40558b84..e4e61b3fb11e 100644
--- a/drivers/thermal/int340x_thermal/acpi_thermal_rel.c
+++ b/drivers/thermal/int340x_thermal/acpi_thermal_rel.c
@@ -131,6 +131,8 @@ int acpi_parse_trt(acpi_handle handle, int *trt_count, struct trt **trtp,
131 pr_warn("Failed to get target ACPI device\n"); 131 pr_warn("Failed to get target ACPI device\n");
132 } 132 }
133 133
134 result = 0;
135
134 *trtp = trts; 136 *trtp = trts;
135 /* don't count bad entries */ 137 /* don't count bad entries */
136 *trt_count -= nr_bad_entries; 138 *trt_count -= nr_bad_entries;