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:
ec45783
)
lib/test_maple_tree.c: remove redundant semicolons
author
Liao Yuanhong
<liaoyuanhong@vivo.com>
Wed, 13 Aug 2025 09:45:43 +0000
(17:45 +0800)
committer
Andrew Morton
<akpm@linux-foundation.org>
Sat, 13 Sep 2025 23:55:01 +0000
(16:55 -0700)
Remove unnecessary semicolons.
Link:
https://lkml.kernel.org/r/20250813094543.555906-1-liaoyuanhong@vivo.com
Signed-off-by: Liao Yuanhong <liaoyuanhong@vivo.com>
Reviewed-by: Dev Jain <dev.jain@arm.com>
Reviewed-by: Liam R. Howlett <Liam.Howlett@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
lib/test_maple_tree.c
patch
|
blob
|
history
diff --git
a/lib/test_maple_tree.c
b/lib/test_maple_tree.c
index
cb39365
..
1433ecc
100644
(file)
--- a/
lib/test_maple_tree.c
+++ b/
lib/test_maple_tree.c
@@
-3562,7
+3562,7
@@
static noinline void __init check_state_handling(struct maple_tree *mt)
MT_BUG_ON(mt, mas.last != 0x1500);
MT_BUG_ON(mt, !mas_is_active(&mas));
- /* find: start ->active on value */
;
+ /* find: start ->active on value */
mas_set(&mas, 1200);
entry = mas_find(&mas, ULONG_MAX);
MT_BUG_ON(mt, entry != ptr);