dma-buf: Combine two function calls into one in dma_buf_debug_show()
authorMarkus Elfring <elfring@users.sourceforge.net>
Mon, 8 May 2017 08:32:44 +0000 (10:32 +0200)
committerSumit Semwal <sumit.semwal@linaro.org>
Mon, 8 May 2017 15:20:21 +0000 (20:50 +0530)
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>
Reviewed-by: Gustavo Padovan <gustavo.padovan@collabora.com>
Signed-off-by: Sumit Semwal <sumit.semwal@linaro.org>
drivers/dma-buf/dma-buf.c

index 512bdbc..53257c1 100644 (file)
@@ -1122,9 +1122,7 @@ static int dma_buf_debug_show(struct seq_file *s, void *unused)
                attach_count = 0;
 
                list_for_each_entry(attach_obj, &buf_obj->attachments, node) {
-                       seq_puts(s, "\t");
-
-                       seq_printf(s, "%s\n", dev_name(attach_obj->dev));
+                       seq_printf(s, "\t%s\n", dev_name(attach_obj->dev));
                        attach_count++;
                }