Lines Matching refs:ed
55 sizeof (struct ed), in ohci_mem_init()
133 static struct ed *
137 struct ed *ed; in ed_alloc() local
141 ed = gen_pool_dma_zalloc_align(hcd->localmem_pool, in ed_alloc()
142 sizeof(*ed), &dma, 16); in ed_alloc()
144 ed = dma_pool_zalloc(hc->ed_cache, mem_flags, &dma); in ed_alloc()
145 if (ed) { in ed_alloc()
146 INIT_LIST_HEAD (&ed->td_list); in ed_alloc()
147 ed->dma = dma; in ed_alloc()
149 return ed; in ed_alloc()
153 ed_free (struct ohci_hcd *hc, struct ed *ed) in ed_free() argument
158 gen_pool_free(hcd->localmem_pool, (unsigned long)ed, in ed_free()
159 sizeof(*ed)); in ed_free()
161 dma_pool_free(hc->ed_cache, ed, ed->dma); in ed_free()