batman-adv: use seq_puts instead of seq_printf when the format is constant
[deliverable/linux.git] / net / batman-adv / originator.c
index 585e684a380b8c0d70ba69a56f0cb6496cbb41e9..2f3452546636ce71747ef9a8b1a949caae8d8f04 100644 (file)
@@ -465,7 +465,7 @@ int batadv_orig_seq_print_text(struct seq_file *seq, void *offset)
                                           neigh_node_tmp->tq_avg);
                        }
 
-                       seq_printf(seq, "\n");
+                       seq_puts(seq, "\n");
                        batman_count++;
 
 next:
@@ -475,7 +475,7 @@ next:
        }
 
        if (batman_count == 0)
-               seq_printf(seq, "No batman nodes in range ...\n");
+               seq_puts(seq, "No batman nodes in range ...\n");
 
 out:
        if (primary_if)
This page took 0.035657 seconds and 5 git commands to generate.