From: Vivek Yadav Date: Sun, 24 Aug 2025 06:14:01 +0000 (-0700) Subject: kselftest/arm64: Supress warning and improve readability X-Git-Tag: v6.18-rc1~210^2~4^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a940568ccde433a0d06aadd4735f7974fd2c59e1;p=thirdparty%2Fkernel%2Fstable.git kselftest/arm64: Supress warning and improve readability The comment was correct, but `checkpatch` script flagged it with a warning as shown in the output section. The comment is slightly modified to improve readability, which also suppresses the warning. ``` [command] ./script/checkpatch.pl --strict -f tools/testing/selftests/arm64/fp/fp-stress.c [output] WARNING: Possible repeated word: 'on' ``` Signed-off-by: Vivek Yadav Signed-off-by: Will Deacon --- diff --git a/tools/testing/selftests/arm64/fp/fp-stress.c b/tools/testing/selftests/arm64/fp/fp-stress.c index 74e23208b94ca..3a0ae96cf9096 100644 --- a/tools/testing/selftests/arm64/fp/fp-stress.c +++ b/tools/testing/selftests/arm64/fp/fp-stress.c @@ -105,8 +105,8 @@ static void child_start(struct child_data *child, const char *program) /* * Read from the startup pipe, there should be no data - * and we should block until it is closed. We just - * carry on on error since this isn't super critical. + * and we should block until it is closed. We just + * carry-on on error since this isn't super critical. */ ret = read(3, &i, sizeof(i)); if (ret < 0)