| 11 | #include "workqueue_legacy.h" |
| 12 | |
| 13 | void rt_delayed_work_init(struct rt_delayed_work *work, |
| 14 | void (*work_func)(struct rt_work *work, |
| 15 | void *work_data), void *work_data) |
| 16 | { |
| 17 | rt_work_init(&work->work, work_func, work_data); |
| 18 | } |
nothing calls this directly
no test coverage detected