forked from luck/tmp_suning_uos_patched
[PATCH] time: fix formatting in /proc/timer_list
Fix the print formatting of three unsigned long fields in /proc/timer_list, which are currently being formatted as signed long. Signed-off-by: James Morris <jmorris@namei.org> Acked-by: Ingo Molnar <mingo@elte.hu> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
e585bef815
commit
0444b3035e
|
@ -194,9 +194,9 @@ print_tickdevice(struct seq_file *m, struct tick_device *td)
|
|||
return;
|
||||
}
|
||||
SEQ_printf(m, "%s\n", dev->name);
|
||||
SEQ_printf(m, " max_delta_ns: %ld\n", dev->max_delta_ns);
|
||||
SEQ_printf(m, " min_delta_ns: %ld\n", dev->min_delta_ns);
|
||||
SEQ_printf(m, " mult: %ld\n", dev->mult);
|
||||
SEQ_printf(m, " max_delta_ns: %lu\n", dev->max_delta_ns);
|
||||
SEQ_printf(m, " min_delta_ns: %lu\n", dev->min_delta_ns);
|
||||
SEQ_printf(m, " mult: %lu\n", dev->mult);
|
||||
SEQ_printf(m, " shift: %d\n", dev->shift);
|
||||
SEQ_printf(m, " mode: %d\n", dev->mode);
|
||||
SEQ_printf(m, " next_event: %Ld nsecs\n",
|
||||
|
|
Loading…
Reference in New Issue
Block a user