diff options
author | Kees Cook <keescook@chromium.org> | 2018-02-21 19:18:22 +0100 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2018-03-05 13:06:44 +0100 |
commit | e0f6429dc1c0aeac8439e16a0c8e2539f401190f (patch) | |
tree | 2a1ddf0ba74636f0f645e513d478b97f190057a9 /arch/arm64/kernel | |
parent | arm64: cpufeature: Relocate PAN emulation report (diff) | |
download | linux-e0f6429dc1c0aeac8439e16a0c8e2539f401190f.tar.xz linux-e0f6429dc1c0aeac8439e16a0c8e2539f401190f.zip |
arm64: cpufeature: Remove redundant "feature" in reports
The word "feature" is repeated in the CPU features reporting. This drops it
for improved readability.
Before (redundant "feature" word):
SMP: Total of 4 processors activated.
CPU features: detected feature: 32-bit EL0 Support
CPU features: detected feature: Kernel page table isolation (KPTI)
CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching
CPU: All CPU(s) started at EL2
After:
SMP: Total of 4 processors activated.
CPU features: detected: 32-bit EL0 Support
CPU features: detected: Kernel page table isolation (KPTI)
CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching
CPU: All CPU(s) started at EL2
Signed-off-by: Kees Cook <keescook@chromium.org>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/kernel')
-rw-r--r-- | arch/arm64/kernel/cpufeature.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kernel/cpufeature.c b/arch/arm64/kernel/cpufeature.c index 64a711c493e0..3c7dfaf24d6c 100644 --- a/arch/arm64/kernel/cpufeature.c +++ b/arch/arm64/kernel/cpufeature.c @@ -1359,7 +1359,7 @@ void check_local_cpu_capabilities(void) static void __init setup_feature_capabilities(void) { - update_cpu_capabilities(arm64_features, "detected feature:"); + update_cpu_capabilities(arm64_features, "detected:"); enable_cpu_capabilities(arm64_features); } |