diff options
author | Jiapeng Chong <jiapeng.chong@linux.alibaba.com> | 2022-04-27 11:06:18 +0800 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2022-05-19 12:11:52 +0200 |
commit | f21b57eb12bfe0d38794145f976ca8127d8846db (patch) | |
tree | d4b49aa903fa7677cb08c7b587ea36bc125e6a02 /tools/lib/thermal | |
parent | e20d136ec7d6f309989c447638365840d3424c8e (diff) | |
download | linux-f21b57eb12bfe0d38794145f976ca8127d8846db.tar.gz |
tools/lib/thermal: remove unneeded semicolon
Fix the following coccicheck warnings:
./tools/lib/thermal/commands.c:215:2-3: Unneeded semicolon.
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Link: https://lore.kernel.org/r/20220427030619.81556-1-jiapeng.chong@linux.alibaba.com
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'tools/lib/thermal')
-rw-r--r-- | tools/lib/thermal/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/thermal/commands.c b/tools/lib/thermal/commands.c index 4e289ca1e5f3..73d4d4e8d6ec 100644 --- a/tools/lib/thermal/commands.c +++ b/tools/lib/thermal/commands.c @@ -212,7 +212,7 @@ static int handle_netlink(struct nl_cache_ops *unused, default: return THERMAL_ERROR; - }; + } return ret; } |