Home
last modified time | relevance | path

Searched refs:td_cache (Results 1 – 2 of 2) sorted by relevance

/drivers/usb/host/
Dohci-mem.c37 ohci->td_cache = dma_pool_create ("ohci_td", in ohci_mem_init()
42 if (!ohci->td_cache) in ohci_mem_init()
50 dma_pool_destroy (ohci->td_cache); in ohci_mem_init()
58 if (ohci->td_cache) { in ohci_mem_cleanup()
59 dma_pool_destroy (ohci->td_cache); in ohci_mem_cleanup()
60 ohci->td_cache = NULL; in ohci_mem_cleanup()
90 td = dma_pool_alloc (hc->td_cache, mem_flags, &dma); in td_alloc()
112 dma_pool_free (hc->td_cache, td, td->td_dma); in td_free()
Dohci.h379 struct dma_pool *td_cache; member