On 2025-01-15 10:03, Thorsten Blum wrote: > Remove hard-coded strings by using the str_enabled_disabled() helper > function. > > Signed-off-by: Thorsten Blum <thorsten.blum@xxxxxxxxx> > --- > arch/sparc/kernel/irq_64.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/arch/sparc/kernel/irq_64.c b/arch/sparc/kernel/irq_64.c > index 01ee800efde3..aff0d24f8c6f 100644 > --- a/arch/sparc/kernel/irq_64.c > +++ b/arch/sparc/kernel/irq_64.c > @@ -22,6 +22,7 @@ > #include <linux/seq_file.h> > #include <linux/ftrace.h> > #include <linux/irq.h> > +#include <linux/string_choices.h> > > #include <asm/ptrace.h> > #include <asm/processor.h> > @@ -170,7 +171,7 @@ static void __init irq_init_hv(void) > > pr_info("SUN4V: Using IRQ API major %d, cookie only virqs %s\n", > hv_irq_version, > - sun4v_cookie_only_virqs() ? "enabled" : "disabled"); > + str_enabled_disabled(sun4v_cookie_only_virqs())); > } > > /* This function is for the timer interrupt.*/ Reviewed-by: Andreas Larsson <andreas@xxxxxxxxxxx> Picking this up to my for-next. Thanks, Andreas