diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2024-12-05 14:13:10 +0100 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2024-12-17 15:05:43 +0100 |
commit | efe479ccc4b58efcc9568a19c89fd797f63d0bf0 (patch) | |
tree | e8d5642e46b9d5da91cdedcd08a19a1c619b8777 | |
parent | 9550fd31fd20f9cebdf0280666fc9d9c70034cb3 (diff) |
pinctrl: ingenic: Replace seq_printf() by seq_puts()
Simplify "seq_printf(p, "%s", ...)" to "seq_puts(p, ...)".
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/9a5b38027ed674ca773fe28a3b3246631eae8834.1733404358.git.geert+renesas@glider.be
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/pinctrl/pinctrl-ingenic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/pinctrl-ingenic.c b/drivers/pinctrl/pinctrl-ingenic.c index 31703737731b..bc7ee54e062b 100644 --- a/drivers/pinctrl/pinctrl-ingenic.c +++ b/drivers/pinctrl/pinctrl-ingenic.c @@ -3699,7 +3699,7 @@ static void ingenic_gpio_irq_print_chip(struct irq_data *data, struct seq_file * { struct gpio_chip *gpio_chip = irq_data_get_irq_chip_data(data); - seq_printf(p, "%s", gpio_chip->label); + seq_puts(p, gpio_chip->label); } static const struct irq_chip ingenic_gpio_irqchip = { |