public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] regulator: core: Use seq_putc() in regulator_summary_show_subtree()
@ 2024-07-13 14:43 Markus Elfring
  0 siblings, 0 replies; only message in thread
From: Markus Elfring @ 2024-07-13 14:43 UTC (permalink / raw)
  To: kernel-janitors, Liam Girdwood, Mark Brown; +Cc: LKML

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sat, 13 Jul 2024 16:36:30 +0200

Single characters (line breaks) should be put into a sequence.
Thus use the corresponding function “seq_putc”.

This issue was transformed by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 drivers/regulator/core.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index 7674b7f2df14..3200bf129fc6 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -6099,7 +6099,7 @@ static void regulator_summary_show_subtree(struct seq_file *s,
 		}
 	}

-	seq_puts(s, "\n");
+	seq_putc(s, '\n');

 	list_for_each_entry(consumer, &rdev->consumer_list, list) {
 		if (consumer->dev && consumer->dev->class == &regulator_class)
@@ -6125,7 +6125,7 @@ static void regulator_summary_show_subtree(struct seq_file *s,
 			break;
 		}

-		seq_puts(s, "\n");
+		seq_putc(s, '\n');
 	}

 	summary_data.s = s;
--
2.45.2


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2024-07-13 14:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-13 14:43 [PATCH] regulator: core: Use seq_putc() in regulator_summary_show_subtree() Markus Elfring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox