]> Git Repo - linux.git/commitdiff
kselftest: arm64: fix spelling mistake "contiguos" -> "contiguous"
authorColin Ian King <[email protected]>
Mon, 11 Nov 2019 09:12:36 +0000 (09:12 +0000)
committerCatalin Marinas <[email protected]>
Mon, 11 Nov 2019 18:25:24 +0000 (18:25 +0000)
There is a spelling mistake in an error message literal string. Fix it.

Fixes: f96bf4340316 ("kselftest: arm64: mangle_pstate_invalid_compat_toggle and common utils")
Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: Catalin Marinas <[email protected]>
tools/testing/selftests/arm64/signal/testcases/testcases.c

index e3521949b800d21139b43b4370da527ad4bd1232..61ebcdf638311e18858c0edfe106f32b963051f0 100644 (file)
@@ -43,7 +43,7 @@ bool validate_extra_context(struct extra_context *extra, char **err)
        else if (extra->size & 0x0fUL)
                *err = "Extra SIZE misaligned";
        else if (extra->datap != (uint64_t)term + sizeof(*term))
-               *err = "Extra DATAP misplaced (not contiguos)";
+               *err = "Extra DATAP misplaced (not contiguous)";
        if (*err)
                return false;
 
This page took 0.055348 seconds and 4 git commands to generate.