Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/usb/host/
Dohci-mem.c38 ohci->td_cache = dma_pool_create ("ohci_td", in ohci_mem_init()
43 if (!ohci->td_cache) in ohci_mem_init()
51 dma_pool_destroy (ohci->td_cache); in ohci_mem_init()
59 if (ohci->td_cache) { in ohci_mem_cleanup()
60 dma_pool_destroy (ohci->td_cache); in ohci_mem_cleanup()
61 ohci->td_cache = NULL; in ohci_mem_cleanup()
91 td = dma_pool_alloc (hc->td_cache, mem_flags, &dma); in td_alloc()
113 dma_pool_free (hc->td_cache, td, td->td_dma); in td_free()
Dohci.h388 struct dma_pool *td_cache; member