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
This commit is contained in:
Geert Uytterhoeven 2024-12-05 14:12:23 +01:00 committed by Thomas Gleixner
parent b8b26ae398
commit e3ab1fc935
1 changed files with 1 additions and 1 deletions
drivers/irqchip

View File

@ -52,7 +52,7 @@ static void ts4800_irq_print_chip(struct irq_data *d, struct seq_file *p)
{
struct ts4800_irq_data *data = irq_data_get_irq_chip_data(d);
seq_printf(p, "%s", dev_name(&data->pdev->dev));
seq_puts(p, dev_name(&data->pdev->dev));
}
static const struct irq_chip ts4800_chip = {