[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <e9e495b9-897c-af37-4749-f175a7b9f7c0@users.sourceforge.net>
Date: Sun, 7 May 2017 11:52:54 +0200
From: SF Markus Elfring <elfring@...rs.sourceforge.net>
To: linux-tegra@...r.kernel.org, linux-pm@...r.kernel.org,
Arnd Bergmann <arnd@...db.de>,
Eduardo Valentin <edubezval@...il.com>,
Jonathan Hunter <jonathanh@...dia.com>,
Mikko Perttunen <mperttunen@...dia.com>,
Thierry Reding <thierry.reding@...il.com>,
Wei Ni <wni@...dia.com>, Zhang Rui <rui.zhang@...el.com>
Cc: LKML <linux-kernel@...r.kernel.org>,
kernel-janitors@...r.kernel.org
Subject: [PATCH 2/3] thermal: tegra: Use seq_putc() in regs_show()
From: Markus Elfring <elfring@...rs.sourceforge.net>
Date: Sun, 7 May 2017 10:57:40 +0200
A single character (line break) should be put into a sequence.
Thus use the corresponding function "seq_putc".
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@...rs.sourceforge.net>
---
drivers/thermal/tegra/soctherm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/thermal/tegra/soctherm.c b/drivers/thermal/tegra/soctherm.c
index c5871f9b6596..1b3915588bce 100644
--- a/drivers/thermal/tegra/soctherm.c
+++ b/drivers/thermal/tegra/soctherm.c
@@ -661,6 +661,6 @@ static int regs_show(struct seq_file *s, void *data)
if (!state) {
- seq_puts(s, "\n");
+ seq_putc(s, '\n');
continue;
}
--
2.12.2
Powered by blists - more mailing lists