]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
selftests: timers: Remove unneeded semicolon
authorChen Ni <nichen@iscas.ac.cn>
Thu, 10 Oct 2024 07:37:07 +0000 (15:37 +0800)
committerShuah Khan <skhan@linuxfoundation.org>
Mon, 14 Oct 2024 22:15:13 +0000 (16:15 -0600)
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>
Acked-by: John Stultz <jstultz@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/timers/set-timer-lat.c

index 5365e9ae61c3c1600521e97e2efcd6ac7a5157ee..7a1a2382538cc0eea021c70b89d49548143b0fb6 100644 (file)
@@ -79,7 +79,7 @@ char *clockstring(int clockid)
                return "CLOCK_BOOTTIME_ALARM";
        case CLOCK_TAI:
                return "CLOCK_TAI";
-       };
+       }
        return "UNKNOWN_CLOCKID";
 }