[PATCH] regulator: core: Use seq_putc() in regulator_summary_show_subtree()

Markus Elfring posted 1 patch 1 year, 6 months ago
drivers/regulator/core.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH] regulator: core: Use seq_putc() in regulator_summary_show_subtree()
Posted by Markus Elfring 1 year, 6 months ago
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