aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/hrtimer.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/hrtimer.c')
-rw-r--r--kernel/hrtimer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/hrtimer.c b/kernel/hrtimer.c
index ab80515008f4..27a83ee41443 100644
--- a/kernel/hrtimer.c
+++ b/kernel/hrtimer.c
@@ -1086,7 +1086,7 @@ ktime_t hrtimer_get_remaining(const struct hrtimer *timer)
1086} 1086}
1087EXPORT_SYMBOL_GPL(hrtimer_get_remaining); 1087EXPORT_SYMBOL_GPL(hrtimer_get_remaining);
1088 1088
1089#if defined(CONFIG_NO_IDLE_HZ) || defined(CONFIG_NO_HZ) 1089#ifdef CONFIG_NO_HZ
1090/** 1090/**
1091 * hrtimer_get_next_event - get the time until next expiry event 1091 * hrtimer_get_next_event - get the time until next expiry event
1092 * 1092 *
@@ -1677,7 +1677,7 @@ void __init hrtimers_init(void)
1677 (void *)(long)smp_processor_id()); 1677 (void *)(long)smp_processor_id());
1678 register_cpu_notifier(&hrtimers_nb); 1678 register_cpu_notifier(&hrtimers_nb);
1679#ifdef CONFIG_HIGH_RES_TIMERS 1679#ifdef CONFIG_HIGH_RES_TIMERS
1680 open_softirq(HRTIMER_SOFTIRQ, run_hrtimer_softirq, NULL); 1680 open_softirq(HRTIMER_SOFTIRQ, run_hrtimer_softirq);
1681#endif 1681#endif
1682} 1682}
1683 1683