#include <delayed_work.h>

Go to the source code of this file.
Functions | |
| void | delayed_work_init (struct delayed_work *dw, struct timer *timer, struct workqueue *wq) |
| Initialize delayed work structure. | |
Delayed work abstraction using timer to schedule an item on a timeout and add specified work to a workqueue on timeout.
Definition in file delayed_work.c.
| void delayed_work_init | ( | struct delayed_work * | dw, | |
| struct timer * | timer, | |||
| struct workqueue * | wq | |||
| ) |
Initialize delayed work structure.
| dw | Delayed wortk structure | |
| timer | Timer to use for delay | |
| wq | Workqueue to add work to |
Definition at line 54 of file delayed_work.c.
References delayed_work::timer, timer_init_task(), delayed_work::timer_task, and delayed_work::wq.
Referenced by sdmmc_cd_init(), sdmmc_mcihost_init(), and sdmmc_probe_init().

1.5.8