diff options
author | Chen Lin <chen45464546@163.com> | 2018-05-11 23:47:29 +0800 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2018-05-13 15:56:01 +0200 |
commit | ed772ec873cb0d378c0329d266ae656ec1f2b511 (patch) | |
tree | 385abcb16586d1f599a4a2b5a56103f165c905eb | |
parent | bf9c96bec76fbc4424b4c70be563af4107d8044f (diff) |
timer_list: Remove unused function pointer typedef
Remove the 'printf_fn_t' typedef as it is not used.
Signed-off-by: Chen Lin <chen45464546@163.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: sboyd@kernel.org
Cc: john.stultz@linaro.org
Link: https://lkml.kernel.org/r/1526053649-24229-1-git-send-email-chen45464546@163.com
-rw-r--r-- | kernel/time/timer_list.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/time/timer_list.c b/kernel/time/timer_list.c index 0ed768b56c60..ddc1d58f96c7 100644 --- a/kernel/time/timer_list.c +++ b/kernel/time/timer_list.c @@ -28,8 +28,6 @@ struct timer_list_iter { u64 now; }; -typedef void (*print_fn_t)(struct seq_file *m, unsigned int *classes); - /* * This allows printing both to /proc/timer_list and * to the console (on SysRq-Q): |