From: Liao Yuanhong Date: Wed, 13 Aug 2025 09:45:43 +0000 (+0800) Subject: lib/test_maple_tree.c: remove redundant semicolons X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=efb795a477dffefba879c913871f11e4179c75f5;p=users%2Fjedix%2Flinux-maple.git lib/test_maple_tree.c: remove redundant semicolons Remove unnecessary semicolons. Link: https://lkml.kernel.org/r/20250813094543.555906-1-liaoyuanhong@vivo.com Signed-off-by: Liao Yuanhong Reviewed-by: Dev Jain Reviewed-by: Liam R. Howlett Signed-off-by: Andrew Morton --- diff --git a/lib/test_maple_tree.c b/lib/test_maple_tree.c index cb3936595b0d..1433ecc854cb 100644 --- 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);