staging: android: ion: Replace seq_printf with seq_puts
authorIulia Manda <iulia.manda21@gmail.com>
Tue, 11 Mar 2014 18:12:29 +0000 (20:12 +0200)
committerPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Thu, 13 Mar 2014 23:33:54 +0000 (16:33 -0700)
It is preferred to use seq_puts instead of seq_printf here, as it suffices string printing.

Signed-off-by: Iulia Manda <iulia.manda21@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
drivers/staging/android/ion/ion.c

index 2aaab27cdf5bb131ca4a455c5ffe5ba0627336b1..b38f5f70530b1ed9e7e43514bc7bbce83e364392 100644 (file)
@@ -1387,7 +1387,7 @@ static int ion_debug_heap_show(struct seq_file *s, void *unused)
        size_t total_orphaned_size = 0;
 
        seq_printf(s, "%16.s %16.s %16.s\n", "client", "pid", "size");
-       seq_printf(s, "----------------------------------------------------\n");
+       seq_puts(s, "----------------------------------------------------\n");
 
        for (n = rb_first(&dev->clients); n; n = rb_next(n)) {
                struct ion_client *client = rb_entry(n, struct ion_client,
@@ -1406,8 +1406,8 @@ static int ion_debug_heap_show(struct seq_file *s, void *unused)
                                   client->pid, size);
                }
        }
-       seq_printf(s, "----------------------------------------------------\n");
-       seq_printf(s, "orphaned allocations (info is from last known client):\n");
+       seq_puts(s, "----------------------------------------------------\n");
+       seq_puts(s, "orphaned allocations (info is from last known client):\n");
        mutex_lock(&dev->buffer_lock);
        for (n = rb_first(&dev->buffers); n; n = rb_next(n)) {
                struct ion_buffer *buffer = rb_entry(n, struct ion_buffer,
@@ -1424,14 +1424,14 @@ static int ion_debug_heap_show(struct seq_file *s, void *unused)
                }
        }
        mutex_unlock(&dev->buffer_lock);
-       seq_printf(s, "----------------------------------------------------\n");
+       seq_puts(s, "----------------------------------------------------\n");
        seq_printf(s, "%16.s %16zu\n", "total orphaned",
                   total_orphaned_size);
        seq_printf(s, "%16.s %16zu\n", "total ", total_size);
        if (heap->flags & ION_HEAP_FLAG_DEFER_FREE)
                seq_printf(s, "%16.s %16zu\n", "deferred free",
                                heap->free_list_size);
-       seq_printf(s, "----------------------------------------------------\n");
+       seq_puts(s, "----------------------------------------------------\n");
 
        if (heap->debug_show)
                heap->debug_show(heap, s, unused);
This page took 0.039101 seconds and 5 git commands to generate.