Skip to content

Commit

Permalink
kernel/latencytop.c: convert seq_printf to seq_puts
Browse files Browse the repository at this point in the history
This patch also fixes one function declaration over 80 characters.

Signed-off-by: Fabian Frederick <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Fabian Frederick authored and torvalds committed Jun 4, 2014
1 parent b9e5db6 commit eaa1809
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions kernel/latencytop.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ static void clear_global_latency_tracing(void)
}

static void __sched
account_global_scheduler_latency(struct task_struct *tsk, struct latency_record *lat)
account_global_scheduler_latency(struct task_struct *tsk,
struct latency_record *lat)
{
int firstnonnull = MAXLR + 1;
int i;
Expand Down Expand Up @@ -255,7 +256,7 @@ static int lstats_show(struct seq_file *m, void *v)
break;
seq_printf(m, " %ps", (void *)bt);
}
seq_printf(m, "\n");
seq_puts(m, "\n");
}
}
return 0;
Expand Down

0 comments on commit eaa1809

Please sign in to comment.