aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/hrtimer.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/kernel/hrtimer.c b/kernel/hrtimer.c
index 1b08f6d67f12..c541ee527ecb 100644
--- a/kernel/hrtimer.c
+++ b/kernel/hrtimer.c
@@ -64,18 +64,18 @@ DEFINE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases) =
64 .clock_base = 64 .clock_base =
65 { 65 {
66 { 66 {
67 .index = HRTIMER_BASE_REALTIME,
68 .clockid = CLOCK_REALTIME,
69 .get_time = &ktime_get_real,
70 .resolution = KTIME_LOW_RES,
71 },
72 {
73 .index = HRTIMER_BASE_MONOTONIC, 67 .index = HRTIMER_BASE_MONOTONIC,
74 .clockid = CLOCK_MONOTONIC, 68 .clockid = CLOCK_MONOTONIC,
75 .get_time = &ktime_get, 69 .get_time = &ktime_get,
76 .resolution = KTIME_LOW_RES, 70 .resolution = KTIME_LOW_RES,
77 }, 71 },
78 { 72 {
73 .index = HRTIMER_BASE_REALTIME,
74 .clockid = CLOCK_REALTIME,
75 .get_time = &ktime_get_real,
76 .resolution = KTIME_LOW_RES,
77 },
78 {
79 .index = HRTIMER_BASE_BOOTTIME, 79 .index = HRTIMER_BASE_BOOTTIME,
80 .clockid = CLOCK_BOOTTIME, 80 .clockid = CLOCK_BOOTTIME,
81 .get_time = &ktime_get_boottime, 81 .get_time = &ktime_get_boottime,