From: Yang Li Date: Mon, 25 Jul 2022 22:27:33 +0000 (+0800) Subject: bpf: Remove unneeded semicolon X-Git-Tag: v6.0-rc1~141^2~24^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=14250fa4839b3a48c979e7faaf4cbcce619d02bd;p=thirdparty%2Flinux.git bpf: Remove unneeded semicolon Eliminate the following coccicheck warning: /kernel/bpf/trampoline.c:101:2-3: Unneeded semicolon Reported-by: Abaci Robot Signed-off-by: Yang Li Signed-off-by: Andrii Nakryiko Link: https://lore.kernel.org/bpf/20220725222733.55613-1-yang.lee@linux.alibaba.com --- diff --git a/kernel/bpf/trampoline.c b/kernel/bpf/trampoline.c index c122d8b3ddc91..0f532e6a717fd 100644 --- a/kernel/bpf/trampoline.c +++ b/kernel/bpf/trampoline.c @@ -98,7 +98,7 @@ static int bpf_tramp_ftrace_ops_func(struct ftrace_ops *ops, enum ftrace_ops_cmd default: ret = -EINVAL; break; - }; + } mutex_unlock(&tr->mutex); return ret;