diff options
author | Chen Ni <nichen@iscas.ac.cn> | 2024-10-10 15:37:07 +0800 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2024-10-14 16:15:13 -0600 |
commit | 488be88a3237f840fd5992465945ed6914b46257 (patch) | |
tree | 317610afd4f9ebbdea74c6068941d735b4acf3d5 | |
parent | c9949b51d0d25b9d35240c6267df519fbb1db5fc (diff) | |
download | linux-488be88a3237f840fd5992465945ed6914b46257.tar.gz linux-488be88a3237f840fd5992465945ed6914b46257.tar.bz2 linux-488be88a3237f840fd5992465945ed6914b46257.zip |
selftests: timers: Remove unneeded semicolon
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>
-rw-r--r-- | tools/testing/selftests/timers/set-timer-lat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/timers/set-timer-lat.c b/tools/testing/selftests/timers/set-timer-lat.c index 5365e9ae61c3..7a1a2382538c 100644 --- a/tools/testing/selftests/timers/set-timer-lat.c +++ b/tools/testing/selftests/timers/set-timer-lat.c @@ -79,7 +79,7 @@ char *clockstring(int clockid) return "CLOCK_BOOTTIME_ALARM"; case CLOCK_TAI: return "CLOCK_TAI"; - }; + } return "UNKNOWN_CLOCKID"; } |