diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2020-11-16 12:53:38 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2020-11-16 17:20:01 +0300 |
commit | cc947f2b9c04113d84eeef67cc7c6326e1982019 (patch) | |
tree | 1ce84059edd3e6ef9ad0635bdd80277abcb8410b /include/linux | |
parent | 6e5a91901c2dff3a0f2eb9f10e427dce2b0488fc (diff) | |
download | linux-cc947f2b9c04113d84eeef67cc7c6326e1982019.tar.xz |
timers: Make run_local_timers() static
No users outside of the timer code. Move the caller below this function to
avoid a pointless forward declaration.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/timer.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/timer.h b/include/linux/timer.h index d10bc7e73b41..fda13c9d1256 100644 --- a/include/linux/timer.h +++ b/include/linux/timer.h @@ -193,7 +193,6 @@ extern int try_to_del_timer_sync(struct timer_list *timer); #define del_singleshot_timer_sync(t) del_timer_sync(t) extern void init_timers(void); -extern void run_local_timers(void); struct hrtimer; extern enum hrtimer_restart it_real_fn(struct hrtimer *); |