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

Colin Ian King posted 1 patch 1 year, 8 months ago
tools/testing/selftests/arm64/fp/kernel-test.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH][next] kselftest/arm64: Fix a couple of spelling mistakes
Posted by Colin Ian King 1 year, 8 months ago
There are two spelling mistakes in some error messages. Fix them.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 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
Re: [PATCH][next] kselftest/arm64: Fix a couple of spelling mistakes
Posted by Catalin Marinas 1 year, 8 months ago
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
Re: [PATCH][next] kselftest/arm64: Fix a couple of spelling mistakes
Posted by Mark Brown 1 year, 8 months ago
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 <broonie@kernel.org>