From: Fengguang Wu <[email protected]>
kernel/bpf/stackmap.c:177:2-3: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Fixes: fd5c09555695 ("bpf: extend stackmap to save binary_build_id+offset
instead of address")
CC: Song Liu <[email protected]>
Signed-off-by: Fengguang Wu <[email protected]>
---
stackmap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/kernel/bpf/stackmap.c
+++ b/kernel/bpf/stackmap.c
@@ -174,7 +174,7 @@ static inline int stack_map_parse_build_
if (new_offs <= note_offs) /* overflow */
break;
note_offs = new_offs;
- };
+ }
return -EINVAL;
}