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


Groups > linux.kernel > #1637447 > unrolled thread

[PATCH] misc: mic: Combine two function calls into one in mic_msi_irq_info_show()

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

Back to article view | Back to linux.kernel


Contents

  [PATCH] misc: mic: Combine two function calls into one in  mic_msi_irq_info_show() SF Markus Elfring <elfring@users.sourceforge.net> - 2017-05-08 15:40 +0200

#1637447 — [PATCH] misc: mic: Combine two function calls into one in mic_msi_irq_info_show()

FromSF Markus Elfring <elfring@users.sourceforge.net>
Date2017-05-08 15:40 +0200
Subject[PATCH] misc: mic: Combine two function calls into one in mic_msi_irq_info_show()
Message-ID<tER3k-4uz-3@gated-at.bofh.it>
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Mon, 8 May 2017 15:21:39 +0200

A bit of data was put into a sequence by two separate function calls.
Print the same data by a single function call instead.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 drivers/misc/mic/host/mic_debugfs.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/misc/mic/host/mic_debugfs.c b/drivers/misc/mic/host/mic_debugfs.c
index 0a9daba8bb5d..63df428ef150 100644
--- a/drivers/misc/mic/host/mic_debugfs.c
+++ b/drivers/misc/mic/host/mic_debugfs.c
@@ -126,10 +126,7 @@ static int mic_msi_irq_info_show(struct seq_file *s, void *pos)
 			seq_printf(s, "%-10s", "offset:");
 			for (j = (MIC_NUM_OFFSETS - 1); j >= 0; j--)
 				seq_printf(s, "%4d ", j);
-			seq_puts(s, "\n");
-
-
-			seq_printf(s, "%-10s", "count:");
+			seq_printf(s, "\n%-10s", "count:");
 			for (j = (MIC_NUM_OFFSETS - 1); j >= 0; j--)
 				seq_printf(s, "%4d ",
 					   (mdev->irq_info.mic_msi_map[i] &
-- 
2.12.2

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web