diff options
author | Will Deacon <will@kernel.org> | 2025-09-19 14:56:43 +0100 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2025-09-19 14:56:43 +0100 |
commit | 92d051a1c1e30d6f8655a3fab91e19fdad72040b (patch) | |
tree | 718ab04348d74a50a26ea8616e40c38e1d5e8b07 | |
parent | 19dd484cd19c308e2ea763f8d31e43a7f1ab6141 (diff) |
arm64: Kconfig: Spell out "ARMv9.4" in menuconfig text
The menuconfig entries to configure various architectural features are
all formatted as "ARMvx.y architecture features" with the unusual
exception of 9.4, which omits the "ARM" prefix.
Add the "ARM" prefix to the menuconfig entry for the ARMv9.4
architectural features.
Signed-off-by: Will Deacon <will@kernel.org>
-rw-r--r-- | arch/arm64/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig index e9bbfacc35a6..514038b18eba 100644 --- a/arch/arm64/Kconfig +++ b/arch/arm64/Kconfig @@ -2218,7 +2218,7 @@ config ARM64_HAFT endmenu # "ARMv8.9 architectural features" -menu "v9.4 architectural features" +menu "ARMv9.4 architectural features" config ARM64_GCS bool "Enable support for Guarded Control Stack (GCS)" @@ -2237,7 +2237,7 @@ config ARM64_GCS The feature is detected at runtime, and will remain disabled if the system does not implement the feature. -endmenu # "v9.4 architectural features" +endmenu # "ARMv9.4 architectural features" config ARM64_SVE bool "ARM Scalable Vector Extension support" |