From: Michael <michael.heinzner@xxxxxxxxxxxxxx> Fixed coding style issues. Signed-off-by: Michael Heinzner <michael.heinzner@xxxxxxxxxxxxxx> --- drivers/staging/android/sync.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/drivers/staging/android/sync.c b/drivers/staging/android/sync.c index 3893a35..2050d97 100644 --- a/drivers/staging/android/sync.c +++ b/drivers/staging/android/sync.c @@ -125,9 +125,9 @@ static void sync_timeline_remove_pt(struct sync_pt *pt) spin_unlock_irqrestore(&obj->active_list_lock, flags); spin_lock_irqsave(&obj->child_list_lock, flags); - if (!list_empty(&pt->child_list)) { + if (!list_empty(&pt->child_list)) list_del_init(&pt->child_list); - } + spin_unlock_irqrestore(&obj->child_list_lock, flags); } @@ -862,7 +862,7 @@ static void sync_print_pt(struct seq_file *s, struct sync_pt *pt, bool fence) sync_status_str(status)); if (pt->status) { struct timeval tv = ktime_to_timeval(pt->timestamp); - seq_printf(s, "@%ld.%06ld", tv.tv_sec, tv.tv_usec); + seq_puts(s, "@%ld.%06ld", tv.tv_sec, tv.tv_usec); } if (pt->parent->ops->timeline_value_str && @@ -873,14 +873,14 @@ static void sync_print_pt(struct seq_file *s, struct sync_pt *pt, bool fence) if (fence) { pt->parent->ops->timeline_value_str(pt->parent, value, sizeof(value)); - seq_printf(s, " / %s", value); + seq_puts(s, " / %s", value); } } else if (pt->parent->ops->print_pt) { - seq_printf(s, ": "); + seq_puts(s, ": "); pt->parent->ops->print_pt(s, pt); } - seq_printf(s, "\n"); + seq_puts(s, "\n"); } static void sync_print_obj(struct seq_file *s, struct sync_timeline *obj) @@ -888,18 +888,18 @@ static void sync_print_obj(struct seq_file *s, struct sync_timeline *obj) struct list_head *pos; unsigned long flags; - seq_printf(s, "%s %s", obj->name, obj->ops->driver_name); + seq_puts(s, "%s %s", obj->name, obj->ops->driver_name); if (obj->ops->timeline_value_str) { char value[64]; obj->ops->timeline_value_str(obj, value, sizeof(value)); - seq_printf(s, ": %s", value); + seq_puts(s, ": %s", value); } else if (obj->ops->print_obj) { - seq_printf(s, ": "); + seq_puts(s, ": "); obj->ops->print_obj(s, obj); } - seq_printf(s, "\n"); + seq_puts(s, "\n"); spin_lock_irqsave(&obj->child_list_lock, flags); list_for_each(pos, &obj->child_list_head) { @@ -940,7 +940,7 @@ static int sync_debugfs_show(struct seq_file *s, void *unused) unsigned long flags; struct list_head *pos; - seq_printf(s, "objs:\n--------------\n"); + seq_puts(s, "objs:\n--------------\n"); spin_lock_irqsave(&sync_timeline_list_lock, flags); list_for_each(pos, &sync_timeline_list_head) { @@ -949,11 +949,11 @@ static int sync_debugfs_show(struct seq_file *s, void *unused) sync_timeline_list); sync_print_obj(s, obj); - seq_printf(s, "\n"); + seq_puts(s, "\n"); } spin_unlock_irqrestore(&sync_timeline_list_lock, flags); - seq_printf(s, "fences:\n--------------\n"); + seq_puts(s, "fences:\n--------------\n"); spin_lock_irqsave(&sync_fence_list_lock, flags); list_for_each(pos, &sync_fence_list_head) { @@ -961,7 +961,7 @@ static int sync_debugfs_show(struct seq_file *s, void *unused) container_of(pos, struct sync_fence, sync_fence_list); sync_print_fence(s, fence); - seq_printf(s, "\n"); + seq_puts(s, "\n"); } spin_unlock_irqrestore(&sync_fence_list_lock, flags); return 0; -- 1.8.1.4 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/devel