• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/dma/

Lines Matching defs:cohd

319 			struct coh901318_desc *cohd)
327 cohd->desc.cookie = cookie;
365 coh901318_desc_free(struct coh901318_chan *cohc, struct coh901318_desc *cohd)
367 list_add_tail(&cohd->node, &cohc->free);
392 coh901318_desc_remove(struct coh901318_desc *cohd)
394 list_del(&cohd->node);
438 struct coh901318_desc *cohd;
458 cohd = list_entry(pos, struct coh901318_desc, node);
484 lli = cohd->lli;
497 left += coh901318_get_bytes_in_lli(cohd->lli);
504 cohd = list_entry(pos, struct coh901318_desc, node);
505 left += coh901318_get_bytes_in_lli(cohd->lli);
645 struct coh901318_desc *cohd;
651 cohd = coh901318_first_queued(cohc);
653 if (cohd != NULL) {
655 coh901318_desc_remove(cohd);
659 coh901318_desc_submit(cohc, cohd);
661 coh901318_prep_linked_list(cohc, cohd->lli);
668 return cohd;
957 struct coh901318_desc *cohd = container_of(tx, struct coh901318_desc,
964 tx->cookie = coh901318_assign_cookie(cohc, cohd);
966 coh901318_desc_queue(cohc, cohd);
978 struct coh901318_desc *cohd;
1014 cohd = coh901318_desc_get(cohc);
1015 cohd->lli = lli;
1016 cohd->flags = flags;
1017 cohd->desc.tx_submit = coh901318_tx_submit;
1021 return &cohd->desc;
1034 struct coh901318_desc *cohd;
1138 cohd = coh901318_desc_get(cohc);
1139 cohd->dir = direction;
1140 cohd->flags = flags;
1141 cohd->desc.tx_submit = coh901318_tx_submit;
1142 cohd->lli = lli;
1146 return &cohd->desc;
1343 struct coh901318_desc *cohd;
1384 while ((cohd = coh901318_first_active_get(cohc))) {
1386 coh901318_lli_free(&cohc->base->pool, &cohd->lli);
1389 coh901318_desc_remove(cohd);
1390 coh901318_desc_free(cohc, cohd);
1393 while ((cohd = coh901318_first_queued(cohc))) {
1395 coh901318_lli_free(&cohc->base->pool, &cohd->lli);
1398 coh901318_desc_remove(cohd);
1399 coh901318_desc_free(cohc, cohd);