aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiapeng Chong <[email protected]>2022-04-27 11:06:18 +0800
committerDaniel Lezcano <[email protected]>2022-05-19 12:11:52 +0200
commitf21b57eb12bfe0d38794145f976ca8127d8846db (patch)
treed4b49aa903fa7677cb08c7b587ea36bc125e6a02
parente20d136ec7d6f309989c447638365840d3424c8e (diff)
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 <[email protected]> Signed-off-by: Jiapeng Chong <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Daniel Lezcano <[email protected]>
-rw-r--r--tools/lib/thermal/commands.c2
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;
}