diff options
Diffstat (limited to 'include/linux/hrtimer.h')
-rw-r--r-- | include/linux/hrtimer.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h index a759636fd09f..e95c96c971c0 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h | |||
@@ -201,4 +201,10 @@ extern void hrtimer_run_queues(void); | |||
201 | /* Bootup initialization: */ | 201 | /* Bootup initialization: */ |
202 | extern void __init hrtimers_init(void); | 202 | extern void __init hrtimers_init(void); |
203 | 203 | ||
204 | #if BITS_PER_LONG < 64 | ||
205 | extern unsigned long ktime_divns(const ktime_t kt, s64 div); | ||
206 | #else /* BITS_PER_LONG < 64 */ | ||
207 | # define ktime_divns(kt, div) (unsigned long)((kt).tv64 / (div)) | ||
208 | #endif | ||
209 | |||
204 | #endif | 210 | #endif |