diff options
-rw-r--r-- | include/linux/hrtimer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h index 68b0196d8696..8730b60c9432 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h | |||
@@ -115,12 +115,12 @@ struct hrtimer { | |||
115 | enum hrtimer_restart (*function)(struct hrtimer *); | 115 | enum hrtimer_restart (*function)(struct hrtimer *); |
116 | struct hrtimer_clock_base *base; | 116 | struct hrtimer_clock_base *base; |
117 | unsigned long state; | 117 | unsigned long state; |
118 | enum hrtimer_cb_mode cb_mode; | ||
119 | struct list_head cb_entry; | 118 | struct list_head cb_entry; |
119 | enum hrtimer_cb_mode cb_mode; | ||
120 | #ifdef CONFIG_TIMER_STATS | 120 | #ifdef CONFIG_TIMER_STATS |
121 | int start_pid; | ||
121 | void *start_site; | 122 | void *start_site; |
122 | char start_comm[16]; | 123 | char start_comm[16]; |
123 | int start_pid; | ||
124 | #endif | 124 | #endif |
125 | }; | 125 | }; |
126 | 126 | ||