Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

irqchip/ts4800: Replace seq_printf() by seq_puts()

Simplify "seq_printf(p, "%s", ...)" to "seq_puts(p, ...)".

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/all/1ba5692126804f9e1ff062ac24939b24030b4f72.1733403985.git.geert+renesas@glider.be

authored by

Geert Uytterhoeven and committed by
Thomas Gleixner
e3ab1fc9 b8b26ae3

+1 -1
+1 -1
drivers/irqchip/irq-ts4800.c
··· 52 52 { 53 53 struct ts4800_irq_data *data = irq_data_get_irq_chip_data(d); 54 54 55 - seq_printf(p, "%s", dev_name(&data->pdev->dev)); 55 + seq_puts(p, dev_name(&data->pdev->dev)); 56 56 } 57 57 58 58 static const struct irq_chip ts4800_chip = {