printf: Remove unused 'bprintf'
[drm/drm-misc.git] / include / linux / timer_types.h
blobfae5a388f91495757a5f7492b0114ce4509a0988
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>
8 struct timer_list {
9 /*
10 * All fields that change during normal runtime grouped to the
11 * same cacheline
13 struct hlist_node entry;
14 unsigned long expires;
15 void (*function)(struct timer_list *);
16 u32 flags;
18 #ifdef CONFIG_LOCKDEP
19 struct lockdep_map lockdep_map;
20 #endif
23 #endif /* _LINUX_TIMER_TYPES_H */