aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/arm64
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2022-09-13 15:10:59 +0100
committerCatalin Marinas <catalin.marinas@arm.com>2022-09-16 12:40:57 +0100
commit78d2b1976b515a9f24a9784c8415b285a092dd3c (patch)
tree7d1cf786881d6ee9755af4417cac38b56a69ea90 /tools/testing/selftests/arm64
parentkselftest/arm64: Fix spelling misakes of signal names (diff)
downloadlinux-dev-78d2b1976b515a9f24a9784c8415b285a092dd3c.tar.xz
linux-dev-78d2b1976b515a9f24a9784c8415b285a092dd3c.zip
kselftest/arm64: Add missing newline in hwcap output
Clean up the output of the test by adding a missing newline, the fix had been done locally but didn't make it into the applied version. Signed-off-by: Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/20220913141101.151400-2-broonie@kernel.org Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'tools/testing/selftests/arm64')
-rw-r--r--tools/testing/selftests/arm64/abi/hwcap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/arm64/abi/hwcap.c b/tools/testing/selftests/arm64/abi/hwcap.c
index 8b5c646cea63..04e4a81dd159 100644
--- a/tools/testing/selftests/arm64/abi/hwcap.c
+++ b/tools/testing/selftests/arm64/abi/hwcap.c
@@ -151,7 +151,7 @@ int main(void)
have_cpuinfo = cpuinfo_present(hwcap->cpuinfo);
if (have_hwcap)
- ksft_print_msg("%s present", hwcap->name);
+ ksft_print_msg("%s present\n", hwcap->name);
ksft_test_result(have_hwcap == have_cpuinfo,
"cpuinfo_match_%s\n", hwcap->name);