1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef _TIMEKEEPING_INTERNAL_H #define _TIMEKEEPING_INTERNAL_H /* * timekeeping debug functions */ #include <linux/time.h> #ifdef CONFIG_DEBUG_FS extern void tk_debug_account_sleep_time(struct timespec64 *t); #else #define tk_debug_account_sleep_time(x) #endif #endif /* _TIMEKEEPING_INTERNAL_H */