diff options
author | Mars Cheng <[email protected]> | 2017-02-09 15:50:15 +0800 |
---|---|---|
committer | Thomas Gleixner <[email protected]> | 2017-02-10 11:15:08 +0100 |
commit | 7551b02b94ad1daee3a79d667dc3c46d08328f87 (patch) | |
tree | 8cce8a8b20c4ae488bec82c367d0fc6ba4f00539 | |
parent | dfb4357da6ddbdf57d583ba64361c9d792b0e0b1 (diff) |
timer_list: Remove useless cast when printing
hrtimer_resolution is already unsigned int, not necessary to cast
it when printing.
Signed-off-by: Mars Cheng <[email protected]>
Cc: CC Hwang <[email protected]>
Cc: [email protected]
Cc: Loda Chou <[email protected]>
Cc: Jades Shih <[email protected]>
Cc: Miles Chen <[email protected]>
Cc: John Stultz <[email protected]>
Cc: My Chuang <[email protected]>
Cc: Matthias Brugger <[email protected]>
Cc: Yingjoe Chen <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
-rw-r--r-- | kernel/time/timer_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/time/timer_list.c b/kernel/time/timer_list.c index 387a3a5aa388..ff8d5c13d04b 100644 --- a/kernel/time/timer_list.c +++ b/kernel/time/timer_list.c @@ -117,7 +117,7 @@ print_base(struct seq_file *m, struct hrtimer_clock_base *base, u64 now) SEQ_printf(m, " .base: %pK\n", base); SEQ_printf(m, " .index: %d\n", base->index); - SEQ_printf(m, " .resolution: %u nsecs\n", (unsigned) hrtimer_resolution); + SEQ_printf(m, " .resolution: %u nsecs\n", hrtimer_resolution); SEQ_printf(m, " .get_time: "); print_name_offset(m, base->get_time); |