[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <173693257191.31546.17424558594145453307.tip-bot2@tip-bot2>
Date: Wed, 15 Jan 2025 09:16:11 -0000
From: "tip-bot2 for Geert Uytterhoeven" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Geert Uytterhoeven <geert+renesas@...der.be>,
Thomas Gleixner <tglx@...utronix.de>, x86@...nel.org,
linux-kernel@...r.kernel.org, maz@...nel.org
Subject: [tip: irq/core] irqchip/ts4800: Replace seq_printf() by seq_puts()
The following commit has been merged into the irq/core branch of tip:
Commit-ID: e3ab1fc9354fabd65ea10ce6ca4153ef07128ad0
Gitweb: https://git.kernel.org/tip/e3ab1fc9354fabd65ea10ce6ca4153ef07128ad0
Author: Geert Uytterhoeven <geert+renesas@...der.be>
AuthorDate: Thu, 05 Dec 2024 14:12:23 +01:00
Committer: Thomas Gleixner <tglx@...utronix.de>
CommitterDate: Wed, 15 Jan 2025 09:59:42 +01:00
irqchip/ts4800: Replace seq_printf() by seq_puts()
Simplify "seq_printf(p, "%s", ...)" to "seq_puts(p, ...)".
Signed-off-by: Geert Uytterhoeven <geert+renesas@...der.be>
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
Link: https://lore.kernel.org/all/1ba5692126804f9e1ff062ac24939b24030b4f72.1733403985.git.geert+renesas@glider.be
---
drivers/irqchip/irq-ts4800.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/irqchip/irq-ts4800.c b/drivers/irqchip/irq-ts4800.c
index cc219f2..960c343 100644
--- a/drivers/irqchip/irq-ts4800.c
+++ b/drivers/irqchip/irq-ts4800.c
@@ -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 = {
Powered by blists - more mailing lists