Skip to content

Commit efe479c

Browse files
geertuLinus Walleij
authored andcommitted
pinctrl: ingenic: Replace seq_printf() by seq_puts()
Simplify "seq_printf(p, "%s", ...)" to "seq_puts(p, ...)". Signed-off-by: Geert Uytterhoeven <[email protected]> Link: https://lore.kernel.org/9a5b38027ed674ca773fe28a3b3246631eae8834.1733404358.git.geert+renesas@glider.be Signed-off-by: Linus Walleij <[email protected]>
1 parent 9550fd3 commit efe479c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pinctrl/pinctrl-ingenic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3699,7 +3699,7 @@ static void ingenic_gpio_irq_print_chip(struct irq_data *data, struct seq_file *
36993699
{
37003700
struct gpio_chip *gpio_chip = irq_data_get_irq_chip_data(data);
37013701

3702-
seq_printf(p, "%s", gpio_chip->label);
3702+
seq_puts(p, gpio_chip->label);
37033703
}
37043704

37053705
static const struct irq_chip ingenic_gpio_irqchip = {

0 commit comments

Comments
 (0)