diff options
| author | Nathan Chancellor <nathan@kernel.org> | 2025-08-21 14:15:42 -0700 |
|---|---|---|
| committer | Nathan Chancellor <nathan@kernel.org> | 2025-08-28 16:58:44 -0700 |
| commit | e633c2e78fd1cc9c4b89518b8d12578a7aa529c1 (patch) | |
| tree | 78a5a95a2c0c1a2dbad1182ad053e8d7853c6937 | |
| parent | 23cb0514208da70c07b3582ecbbe6b3c633a481f (diff) | |
mips: Unconditionally select ARCH_HAS_CURRENT_STACK_POINTER
Now that the minimum supported version of LLVM for building the kernel
has been bumped to 15.0.0, the selection of
ARCH_HAS_CURRENT_STACK_POINTER can be made unconditional since it is
always true.
Acked-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Reviewed-by: Kees Cook <kees@kernel.org>
Link: https://lore.kernel.org/r/20250821-bump-min-llvm-ver-15-v2-5-635f3294e5f0@kernel.org
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
| -rw-r--r-- | arch/mips/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index caf508f6e9ec..bc7473505f4a 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -6,7 +6,7 @@ config MIPS select ARCH_BINFMT_ELF_STATE if MIPS_FP_SUPPORT select ARCH_HAS_CPU_CACHE_ALIASING select ARCH_HAS_CPU_FINALIZE_INIT - select ARCH_HAS_CURRENT_STACK_POINTER if !CC_IS_CLANG || CLANG_VERSION >= 140000 + select ARCH_HAS_CURRENT_STACK_POINTER select ARCH_HAS_DEBUG_VIRTUAL if !64BIT select ARCH_HAS_DMA_OPS if MACH_JAZZ select ARCH_HAS_FORTIFY_SOURCE |
