[PATCH v2 resend] arm: orion: use string choices helper

Gregory CLEMENT gregory.clement at bootlin.com
Mon Jul 7 07:56:31 PDT 2025


Kuninori Morimoto <kuninori.morimoto.gx at renesas.com> writes:

> We can use string choices helper, let's use it.
>
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx at renesas.com>
> Reviewed-by: Andrew Lunn <andrew at lunn.ch>

Applied on mvebu/arm

Thanks,

Gregory
> ---
> v1 -> v2
> 	- add commit message
> 	- add Reviewed-by
>
>  arch/arm/plat-orion/gpio.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/plat-orion/gpio.c b/arch/arm/plat-orion/gpio.c
> index ca1bd764cfa5..6f09f65e3d95 100644
> --- a/arch/arm/plat-orion/gpio.c
> +++ b/arch/arm/plat-orion/gpio.c
> @@ -468,14 +468,14 @@ static void orion_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
>  
>  		if (is_out) {
>  			seq_printf(s, " out %s %s\n",
> -				   out & msk ? "hi" : "lo",
> +				   str_hi_lo(out & msk),
>  				   blink & msk ? "(blink )" : "");
>  			continue;
>  		}
>  
>  		seq_printf(s, " in  %s (act %s) - IRQ",
> -			   (data_in ^ in_pol) & msk  ? "hi" : "lo",
> -			   in_pol & msk ? "lo" : "hi");
> +			   str_hi_lo((data_in ^ in_pol) & msk),
> +			   str_lo_hi(in_pol & msk));
>  		if (!((edg_msk | lvl_msk) & msk)) {
>  			seq_puts(s, " disabled\n");
>  			continue;
> -- 
> 2.43.0
>

-- 
Grégory CLEMENT, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com



More information about the linux-arm-kernel mailing list