diff options
| author | Markus Elfring <elfring@users.sourceforge.net> | 2014-11-21 11:11:49 -0500 |
|---|---|---|
| committer | Eduardo Valentin <edubezval@gmail.com> | 2014-11-21 14:20:17 -0500 |
| commit | d3e19567fa85e1a0dab02205b89b2908084ecadd (patch) | |
| tree | 2068a12610f7854d2469a26db30bab2a228fc161 | |
| parent | e60a342bc494228d820dd801e9bfd72fbf829bc4 (diff) | |
thermal: Exynos: Deletion of unnecessary checks before two function calls
The functions cpufreq_cooling_unregister() and thermal_zone_device_unregister()
test whether their argument is NULL and then return immediately.
Thus the test around the call is not needed.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
| -rw-r--r-- | drivers/thermal/samsung/exynos_thermal_common.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/thermal/samsung/exynos_thermal_common.c b/drivers/thermal/samsung/exynos_thermal_common.c index 3f5ad25ddca8..b6be572704a4 100644 --- a/drivers/thermal/samsung/exynos_thermal_common.c +++ b/drivers/thermal/samsung/exynos_thermal_common.c | |||
| @@ -417,13 +417,10 @@ void exynos_unregister_thermal(struct thermal_sensor_conf *sensor_conf) | |||
| 417 | 417 | ||
| 418 | th_zone = sensor_conf->pzone_data; | 418 | th_zone = sensor_conf->pzone_data; |
| 419 | 419 | ||
| 420 | if (th_zone->therm_dev) | 420 | thermal_zone_device_unregister(th_zone->therm_dev); |
| 421 | thermal_zone_device_unregister(th_zone->therm_dev); | ||
| 422 | 421 | ||
| 423 | for (i = 0; i < th_zone->cool_dev_size; i++) { | 422 | for (i = 0; i < th_zone->cool_dev_size; ++i) |
| 424 | if (th_zone->cool_dev[i]) | 423 | cpufreq_cooling_unregister(th_zone->cool_dev[i]); |
| 425 | cpufreq_cooling_unregister(th_zone->cool_dev[i]); | ||
| 426 | } | ||
| 427 | 424 | ||
| 428 | dev_info(sensor_conf->dev, | 425 | dev_info(sensor_conf->dev, |
| 429 | "Exynos: Kernel Thermal management unregistered\n"); | 426 | "Exynos: Kernel Thermal management unregistered\n"); |
