Commit 330f4c53 authored by Emmanuel Gil Peyrot's avatar Emmanuel Gil Peyrot Committed by Linus Torvalds

ARM: fix build error when BPF_SYSCALL is disabled

It was missing a semicolon.
Signed-off-by: default avatarEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>
Reviewed-by: default avatarNathan Chancellor <nathan@kernel.org>
Fixes: 25875aa7 ("ARM: include unprivileged BPF status in Spectre V2 reporting").
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 4f86a6b4
......@@ -10,7 +10,7 @@ static bool _unprivileged_ebpf_enabled(void)
#ifdef CONFIG_BPF_SYSCALL
return !sysctl_unprivileged_bpf_disabled;
#else
return false
return false;
#endif
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment