Lines Matching defs:work
188 struct delayed_work work;
452 static void udma_purge_desc_work(struct work_struct *work)
454 struct udma_dev *ud = container_of(work, typeof(*ud), purge_work);
472 /* If more to purge, schedule the work again */
957 static void udma_check_tx_completion(struct work_struct *work)
959 struct udma_chan *uc = container_of(work, typeof(*uc),
960 tx_drain.work.work);
997 schedule_delayed_work(&uc->tx_drain.work, HZ);
1067 schedule_delayed_work(&uc->tx_drain.work,
2836 cancel_delayed_work(&uc->tx_drain.work);
2870 cancel_delayed_work_sync(&uc->tx_drain.work);
2964 cancel_delayed_work_sync(&uc->tx_drain.work);
3674 INIT_DELAYED_WORK(&uc->tx_drain.work, udma_check_tx_completion);