* [PATCH] riscv: process: Use str_supported_unsupported() in compat_mode_detect()
@ 2026-09-24 21:32 Thorsten Blum
0 siblings, 0 replies; only message in thread
From: Thorsten Blum @ 2026-09-24 21:32 UTC (permalink / raw)
To: Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti,
Deepak Gupta, Zong Li, Samuel Holland, Zishun Yi
Cc: Thorsten Blum, linux-riscv, linux-kernel
Replace hard-coded strings with the str_supported_unsupported() helper.
This unifies the output and helps the linker with deduplication, which
can result in a smaller binary.
Signed-off-by: Thorsten Blum <blum@kernel.org>
---
arch/riscv/kernel/process.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch/riscv/kernel/process.c b/arch/riscv/kernel/process.c
index b2df7f72241a..967c27f2ae25 100644
--- a/arch/riscv/kernel/process.c
+++ b/arch/riscv/kernel/process.c
@@ -13,6 +13,7 @@
#include <linux/sched.h>
#include <linux/sched/debug.h>
#include <linux/sched/task_stack.h>
+#include <linux/string_choices.h>
#include <linux/tick.h>
#include <linux/ptrace.h>
#include <linux/uaccess.h>
@@ -134,7 +135,7 @@ static int __init compat_mode_detect(void)
csr_write(CSR_STATUS, tmp);
pr_info("riscv: ELF compat mode %s",
- compat_mode_supported ? "supported" : "unsupported");
+ str_supported_unsupported(compat_mode_supported));
return 0;
}
base-commit: 5383cf280ef4f00b15f1d9e2a2886d0d02c0118b
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-09-24 21:33 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-24 21:32 [PATCH] riscv: process: Use str_supported_unsupported() in compat_mode_detect() Thorsten Blum
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®