projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e01aac5
)
thermal/drivers/hwmon: Cleanup coding style a bit
author
Bernard Zhao
<bernard@vivo.com>
Mon, 2 Nov 2020 02:31:21 +0000
(18:31 -0800)
committer
Daniel Lezcano
<daniel.lezcano@linaro.org>
Thu, 12 Nov 2020 10:24:01 +0000
(11:24 +0100)
Function thermal_add_hwmon_sysfs, hwmon will be NULL when
new_hwmon_device = 0, so there is no need to check, kfree will
handle NULL point.
Signed-off-by: Bernard Zhao <bernard@vivo.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link:
https://lore.kernel.org/r/20201102023121.3312-1-bernard@vivo.com
drivers/thermal/thermal_hwmon.c
patch
|
blob
|
history
diff --git
a/drivers/thermal/thermal_hwmon.c
b/drivers/thermal/thermal_hwmon.c
index
8b92e00
..
ad03262
100644
(file)
--- a/
drivers/thermal/thermal_hwmon.c
+++ b/
drivers/thermal/thermal_hwmon.c
@@
-206,8
+206,7
@@
int thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
if (new_hwmon_device)
hwmon_device_unregister(hwmon->device);
free_mem:
- if (new_hwmon_device)
- kfree(hwmon);
+ kfree(hwmon);
return result;
}