From nobody Thu Dec 18 08:13:22 2025 Received: from andre.telenet-ops.be (andre.telenet-ops.be [195.130.132.53]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 54DB9E56C for ; Thu, 5 Dec 2024 13:12:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.132.53 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733404349; cv=none; b=SatyLdq60mTZ4eqR94EHvcPifEm/FXqmqkkZSDKGjuqHP09XTrlMCT5ViSax74UK8jsq3esV0F/7sIQwVETxYLgfXGmjtaAlApuMoPqOfK+pPZsZG9r9PvFKwQr2rbauYiLtu8PlXnsbnUkLzad5aHYuVS+8UbQLeabK3XpidxI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733404349; c=relaxed/simple; bh=nOcg4iRaymGOlbDC9XoflRZruyos6h6RydTL57ZXlzg=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=BzAtFirMdgHWuM1uPUJlJ2DZPeQUWPzTG8k3wIs2OdOzToQ1TTvSHPle/iOOvGgXTohSaNc2iY+csu99rL/YRWcd1LD2wuJDP4xrVDdrqOjVSnRTEbdbFhPDSkrbsq1ZlmhaAqg2AefKhUu1j2zH8st1PSNCVgXLfA9G82yDEak= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.132.53 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed80:b16a:6561:fa1:2b32]) by andre.telenet-ops.be with cmsmtp id l1CR2D0053EEtj2011CRSz; Thu, 05 Dec 2024 14:12:25 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1tJBea-000LQB-4j; Thu, 05 Dec 2024 14:12:24 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1tJBea-00EQVx-Qi; Thu, 05 Dec 2024 14:12:24 +0100 From: Geert Uytterhoeven To: Thomas Gleixner Cc: "Savoir-faire Linux Inc ." , linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] irqchip/ts4800: Replace seq_printf() by seq_puts() Date: Thu, 5 Dec 2024 14:12:23 +0100 Message-Id: <1ba5692126804f9e1ff062ac24939b24030b4f72.1733403985.git.geert+renesas@glider.be> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Simplify "seq_printf(p, "%s", ...)" to "seq_puts(p, ...)". Signed-off-by: Geert Uytterhoeven --- Compile-tested only. --- 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 cc219f28d317fed1..960c343d5781130b 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, str= uct seq_file *p) { struct ts4800_irq_data *data =3D irq_data_get_irq_chip_data(d); =20 - seq_printf(p, "%s", dev_name(&data->pdev->dev)); + seq_puts(p, dev_name(&data->pdev->dev)); } =20 static const struct irq_chip ts4800_chip =3D { --=20 2.34.1