2024-06-13 07:36:29

by Colin Ian King

[permalink] [raw]
Subject: [PATCH][next] kselftest/arm64: Fix a couple of spelling mistakes

There are two spelling mistakes in some error messages. Fix them.

Signed-off-by: Colin Ian King <[email protected]>
---
tools/testing/selftests/arm64/fp/kernel-test.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/testing/selftests/arm64/fp/kernel-test.c b/tools/testing/selftests/arm64/fp/kernel-test.c
index 50db26a3ed79..e8da3b4cbd23 100644
--- a/tools/testing/selftests/arm64/fp/kernel-test.c
+++ b/tools/testing/selftests/arm64/fp/kernel-test.c
@@ -233,7 +233,7 @@ static bool compute_digest(void *buf)
reread:
ret = recv(sock, buf, digest_len, 0);
if (ret == 0) {
- printf("No disgest returned\n");
+ printf("No digest returned\n");
return false;
}
if (ret != digest_len) {
@@ -308,7 +308,7 @@ int main(void)

while (true) {
if (!compute_digest(digest)) {
- printf("Failed to coempute digest, iter=%d\n", iter);
+ printf("Failed to compute digest, iter=%d\n", iter);
return EXIT_FAILURE;
}

--
2.39.2



2024-06-13 09:09:30

by Mark Brown

[permalink] [raw]
Subject: Re: [PATCH][next] kselftest/arm64: Fix a couple of spelling mistakes

On Thu, Jun 13, 2024 at 08:34:29AM +0100, Colin Ian King wrote:
> There are two spelling mistakes in some error messages. Fix them.

Reviewed-by: Mark Brown <[email protected]>


Attachments:
(No filename) (182.00 B)
signature.asc (499.00 B)
Download all attachments

2024-06-13 09:51:30

by Catalin Marinas

[permalink] [raw]
Subject: Re: [PATCH][next] kselftest/arm64: Fix a couple of spelling mistakes

On Thu, 13 Jun 2024 08:34:29 +0100, Colin Ian King wrote:
> There are two spelling mistakes in some error messages. Fix them.
>
>

Applied to arm64 (for-next/kselftest), thanks!

[1/1] kselftest/arm64: Fix a couple of spelling mistakes
https://git.kernel.org/arm64/c/963c5d496822

--
Catalin