Commit 129f1d2c authored by Vegard Nossum's avatar Vegard Nossum Committed by Thomas Gleixner

timer_list: Fix printk format strings

This makes sure printk format strings contain no more than a single
line.
Signed-off-by: default avatarVegard Nossum <vegard.nossum@gmail.com>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 64e38eb0
...@@ -129,7 +129,8 @@ static void print_cpu(struct seq_file *m, int cpu, u64 now) ...@@ -129,7 +129,8 @@ static void print_cpu(struct seq_file *m, int cpu, u64 now)
struct hrtimer_cpu_base *cpu_base = &per_cpu(hrtimer_bases, cpu); struct hrtimer_cpu_base *cpu_base = &per_cpu(hrtimer_bases, cpu);
int i; int i;
SEQ_printf(m, "\ncpu: %d\n", cpu); SEQ_printf(m, "\n");
SEQ_printf(m, "cpu: %d\n", cpu);
for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) { for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
SEQ_printf(m, " clock %d:\n", i); SEQ_printf(m, " clock %d:\n", i);
print_base(m, cpu_base->clock_base + i, now); print_base(m, cpu_base->clock_base + i, now);
...@@ -184,7 +185,8 @@ print_tickdevice(struct seq_file *m, struct tick_device *td) ...@@ -184,7 +185,8 @@ print_tickdevice(struct seq_file *m, struct tick_device *td)
{ {
struct clock_event_device *dev = td->evtdev; struct clock_event_device *dev = td->evtdev;
SEQ_printf(m, "\nTick Device: mode: %d\n", td->mode); SEQ_printf(m, "\n");
SEQ_printf(m, "Tick Device: mode: %d\n", td->mode);
SEQ_printf(m, "Clock Event Device: "); SEQ_printf(m, "Clock Event Device: ");
if (!dev) { if (!dev) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment