diff options
-rw-r--r-- | include/linux/hrtimer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h index 925c8c01db7b..cc5f5f51db10 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h | |||
@@ -174,7 +174,6 @@ enum hrtimer_base_type { | |||
174 | */ | 174 | */ |
175 | struct hrtimer_cpu_base { | 175 | struct hrtimer_cpu_base { |
176 | raw_spinlock_t lock; | 176 | raw_spinlock_t lock; |
177 | struct hrtimer_clock_base clock_base[HRTIMER_MAX_CLOCK_BASES]; | ||
178 | #ifdef CONFIG_HIGH_RES_TIMERS | 177 | #ifdef CONFIG_HIGH_RES_TIMERS |
179 | ktime_t expires_next; | 178 | ktime_t expires_next; |
180 | int hres_active; | 179 | int hres_active; |
@@ -184,6 +183,7 @@ struct hrtimer_cpu_base { | |||
184 | unsigned long nr_hangs; | 183 | unsigned long nr_hangs; |
185 | ktime_t max_hang_time; | 184 | ktime_t max_hang_time; |
186 | #endif | 185 | #endif |
186 | struct hrtimer_clock_base clock_base[HRTIMER_MAX_CLOCK_BASES]; | ||
187 | }; | 187 | }; |
188 | 188 | ||
189 | static inline void hrtimer_set_expires(struct hrtimer *timer, ktime_t time) | 189 | static inline void hrtimer_set_expires(struct hrtimer *timer, ktime_t time) |