projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
081006b
)
perf symbol: Remove unneeded semicolon
author
Chen Ni
<nichen@iscas.ac.cn>
Tue, 11 Nov 2025 05:44:15 +0000
(13:44 +0800)
committer
Namhyung Kim
<namhyung@kernel.org>
Tue, 11 Nov 2025 06:22:16 +0000
(22:22 -0800)
Remove unnecessary semicolons reported by Coccinelle/coccicheck and the
semantic patch at scripts/coccinelle/misc/semicolon.cocci.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
tools/perf/util/synthetic-events.c
patch
|
blob
|
history
diff --git
a/tools/perf/util/synthetic-events.c
b/tools/perf/util/synthetic-events.c
index
fcd1fd1
..
5aa44c4
100644
(file)
--- a/
tools/perf/util/synthetic-events.c
+++ b/
tools/perf/util/synthetic-events.c
@@
-389,7
+389,7
@@
static void perf_record_mmap2__read_build_id(struct perf_record_mmap2 *event,
dso_id.ino_generation = event->ino_generation;
dso_id.mmap2_valid = true;
dso_id.mmap2_ino_generation_valid = true;
- }
;
+ }
dso = dsos__findnew_id(&machine->dsos, event->filename, &dso_id);
if (dso && dso__has_build_id(dso)) {