Skip to content

Commit feea69e

Browse files
intel-lab-lkprostedt
authored andcommitted
tracing/histogram: Fix semicolon.cocci warnings
kernel/trace/trace_events_hist.c:6039:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Link: https://lkml.kernel.org/r/20211030005615.GA41257@3074f0d39c61 Fixes: c5eac6e ("tracing/histogram: Simplify handling of .sym-offset in expressions") CC: Kalesh Singh <[email protected]> Reported-by: kernel test robot <[email protected]> Signed-off-by: kernel test robot <[email protected]> Signed-off-by: Steven Rostedt (VMware) <[email protected]>
1 parent 93d76e4 commit feea69e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/trace/trace_events_hist.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6084,7 +6084,7 @@ static int event_hist_trigger_func(struct event_command *cmd_ops,
60846084
while (start) {
60856085
*(start + 4) = 'X';
60866086
start = strstr(start + 11, ".sym-offset");
6087-
};
6087+
}
60886088

60896089
attrs = parse_hist_trigger_attrs(file->tr, trigger);
60906090
if (IS_ERR(attrs))

0 commit comments

Comments
 (0)