Skip to content

Commit e3ab1fc

Browse files
geertuKAGA-KOKO
authored andcommitted
irqchip/ts4800: Replace seq_printf() by seq_puts()
Simplify "seq_printf(p, "%s", ...)" to "seq_puts(p, ...)". Signed-off-by: Geert Uytterhoeven <[email protected]> Signed-off-by: Thomas Gleixner <[email protected]> Link: https://lore.kernel.org/all/1ba5692126804f9e1ff062ac24939b24030b4f72.1733403985.git.geert+renesas@glider.be
1 parent b8b26ae commit e3ab1fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/irqchip/irq-ts4800.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ static void ts4800_irq_print_chip(struct irq_data *d, struct seq_file *p)
5252
{
5353
struct ts4800_irq_data *data = irq_data_get_irq_chip_data(d);
5454

55-
seq_printf(p, "%s", dev_name(&data->pdev->dev));
55+
seq_puts(p, dev_name(&data->pdev->dev));
5656
}
5757

5858
static const struct irq_chip ts4800_chip = {

0 commit comments

Comments
 (0)