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>
This commit is contained in:
Jiapeng Chong 2022-04-27 11:06:18 +08:00 committed by Daniel Lezcano
parent e20d136ec7
commit f21b57eb12

View file

@ -212,7 +212,7 @@ static int handle_netlink(struct nl_cache_ops *unused,
default:
return THERMAL_ERROR;
};
}
return ret;
}