Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1637153 > unrolled thread

[PATCH 2/3] thermal: tegra: Use seq_putc() in regs_show()

Started bySF Markus Elfring <elfring@users.sourceforge.net>
First post2017-05-08 01:30 +0200
Last post2017-05-08 01:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 2/3] thermal: tegra: Use seq_putc() in regs_show() SF Markus Elfring <elfring@users.sourceforge.net> - 2017-05-08 01:30 +0200

#1637153 — [PATCH 2/3] thermal: tegra: Use seq_putc() in regs_show()

FromSF Markus Elfring <elfring@users.sourceforge.net>
Date2017-05-08 01:30 +0200
Subject[PATCH 2/3] thermal: tegra: Use seq_putc() in regs_show()
Message-ID<tEDMK-4eZ-19@gated-at.bofh.it>
From: Markus Elfring <elfring@users.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@users.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

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web