| 71 | #ifndef HAVE_KERNEL_TIMER_SETUP |
| 72 | |
| 73 | static inline void |
| 74 | timer_setup(struct timer_list *timer, void (*func)(spl_timer_list_t), u32 fl) |
| 75 | { |
| 76 | #ifdef HAVE_KERNEL_TIMER_LIST_FLAGS |
| 77 | (timer)->flags = fl; |
| 78 | #endif |
| 79 | init_timer(timer); |
| 80 | setup_timer(timer, func, (spl_timer_list_t)(timer)); |
| 81 | } |
| 82 | |
| 83 | #endif /* HAVE_KERNEL_TIMER_SETUP */ |
| 84 |
no outgoing calls
no test coverage detected