1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_TIMER_TYPES_H
3 #define _LINUX_TIMER_TYPES_H
5 #include <linux/lockdep_types.h>
6 #include <linux/types.h>
10 * All fields that change during normal runtime grouped to the
13 struct hlist_node entry
;
14 unsigned long expires
;
15 void (*function
)(struct timer_list
*);
19 struct lockdep_map lockdep_map
;
23 #endif /* _LINUX_TIMER_TYPES_H */