projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
537adde
)
kselftest/arm64: Add missing newline in hwcap output
author
Mark Brown
<broonie@kernel.org>
Tue, 13 Sep 2022 14:10:59 +0000
(15:10 +0100)
committer
Catalin Marinas
<catalin.marinas@arm.com>
Fri, 16 Sep 2022 11:40:57 +0000
(12:40 +0100)
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>
tools/testing/selftests/arm64/abi/hwcap.c
patch
|
blob
|
history
diff --git
a/tools/testing/selftests/arm64/abi/hwcap.c
b/tools/testing/selftests/arm64/abi/hwcap.c
index
8b5c646
..
04e4a81
100644
(file)
--- 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);