]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
pinctrl: bcm2835: Use string_choices API instead of ternary operator
authorStefan Wahren <wahrenst@gmx.net>
Mon, 3 Jun 2024 18:19:38 +0000 (20:19 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 17 Jun 2024 07:50:11 +0000 (09:50 +0200)
Use modern string_choices API instead of manually determining the
output using ternary operator.

Suggested-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Stefan Wahren <wahrenst@gmx.net>
Acked-by: Florian Fainelli <florian.fainelli@broadcom.com>
Link: https://lore.kernel.org/r/20240603181938.76047-3-wahrenst@gmx.net
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/bcm/pinctrl-bcm2835.c

index 7178a38475cccbfe0c4c5e7911708ab2d2c8c553..4d33bdf9d4b6952fbbb68179c376f055d46345a7 100644 (file)
@@ -34,6 +34,7 @@
 #include <linux/seq_file.h>
 #include <linux/slab.h>
 #include <linux/spinlock.h>
+#include <linux/string_choices.h>
 #include <linux/types.h>
 #include <dt-bindings/pinctrl/bcm2835.h>
 
@@ -752,7 +753,7 @@ static void bcm2835_pctl_pin_dbg_show(struct pinctrl_dev *pctldev,
        int irq = irq_find_mapping(chip->irq.domain, offset);
 
        seq_printf(s, "function %s in %s; irq %d (%s)",
-               fname, value ? "hi" : "lo",
+               fname, str_hi_lo(value),
                irq, irq_type_names[pc->irq_type[offset]]);
 }
 
@@ -1428,7 +1429,7 @@ static int bcm2835_pinctrl_probe(struct platform_device *pdev)
        }
 
        dev_info(dev, "GPIO_OUT persistence: %s\n",
-                persist_gpio_outputs ? "yes" : "no");
+                str_yes_no(persist_gpio_outputs));
 
        return 0;