[tip: x86/cleanups] x86/apic: Use str_disabled_enabled() helper in print_ipi_mode()

From: tip-bot2 for Thorsten Blum
Date: Fri Feb 21 2025 - 11:12:07 EST


The following commit has been merged into the x86/cleanups branch of tip:

Commit-ID: 0156338a18eba7ee229e59c8928c7056e9753c61
Gitweb: https://git.kernel.org/tip/0156338a18eba7ee229e59c8928c7056e9753c61
Author: Thorsten Blum <thorsten.blum@xxxxxxxxx>
AuthorDate: Sun, 09 Feb 2025 22:03:32 +01:00
Committer: Ingo Molnar <mingo@xxxxxxxxxx>
CommitterDate: Fri, 21 Feb 2025 16:54:22 +01:00

x86/apic: Use str_disabled_enabled() helper in print_ipi_mode()

Remove hard-coded strings by using the str_disabled_enabled() helper.

No change in functionality intended.

Signed-off-by: Thorsten Blum <thorsten.blum@xxxxxxxxx>
Signed-off-by: Ingo Molnar <mingo@xxxxxxxxxx>
Link: https://lore.kernel.org/r/20250209210333.5666-2-thorsten.blum@xxxxxxxxx
---
arch/x86/kernel/apic/ipi.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/x86/kernel/apic/ipi.c b/arch/x86/kernel/apic/ipi.c
index 5da693d..942168d 100644
--- a/arch/x86/kernel/apic/ipi.c
+++ b/arch/x86/kernel/apic/ipi.c
@@ -3,6 +3,7 @@
#include <linux/cpumask.h>
#include <linux/delay.h>
#include <linux/smp.h>
+#include <linux/string_choices.h>

#include <asm/io_apic.h>

@@ -23,7 +24,7 @@ __setup("no_ipi_broadcast=", apic_ipi_shorthand);
static int __init print_ipi_mode(void)
{
pr_info("IPI shorthand broadcast: %s\n",
- apic_ipi_shorthand_off ? "disabled" : "enabled");
+ str_disabled_enabled(apic_ipi_shorthand_off));
return 0;
}
late_initcall(print_ipi_mode);