Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1627193 > unrolled thread
| Started by | SF Markus Elfring <elfring@users.sourceforge.net> |
|---|---|
| First post | 2017-04-20 10:30 +0200 |
| Last post | 2017-04-20 10: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.
[PATCH 5/8] clk: Combine two seq_puts() calls into one call in clk_summary_show() SF Markus Elfring <elfring@users.sourceforge.net> - 2017-04-20 10:30 +0200
| From | SF Markus Elfring <elfring@users.sourceforge.net> |
|---|---|
| Date | 2017-04-20 10:30 +0200 |
| Subject | [PATCH 5/8] clk: Combine two seq_puts() calls into one call in clk_summary_show() |
| Message-ID | <tyfDs-6zX-13@gated-at.bofh.it> |
From: Markus Elfring <elfring@users.sourceforge.net> Date: Thu, 20 Apr 2017 09:12:35 +0200 Some text was put into a sequence by two separate function calls. Print the same data by a single function call instead. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> --- drivers/clk/clk.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 4c72a10a9a33..684642ab4212 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -2030,9 +2030,9 @@ static int clk_summary_show(struct seq_file *s, void *data) struct clk_core *c; struct hlist_head **lists = (struct hlist_head **)s->private; - seq_puts(s, " clock enable_cnt prepare_cnt rate accuracy phase\n"); - seq_puts(s, "----------------------------------------------------------------------------------------\n"); - + seq_puts(s, + " clock enable_cnt prepare_cnt rate accuracy phase\n" + "----------------------------------------------------------------------------------------\n"); clk_prepare_lock(); for (; *lists; lists++) -- 2.12.2
Back to top | Article view | linux.kernel
csiph-web