Home
last modified time | relevance | path

Searched refs:td_pool (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/usb/host/
H A Duhci-hcd.c549 dma_pool_destroy(uhci->td_pool); in release_uhci()
610 uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci), in uhci_start()
612 if (!uhci->td_pool) { in uhci_start()
691 dma_pool_destroy(uhci->td_pool); in uhci_start()
H A Duhci-hcd.h391 struct dma_pool *td_pool; member
H A Duhci-q.c111 td = dma_pool_alloc(uhci->td_pool, GFP_ATOMIC, &dma_handle); in uhci_alloc_td()
131 dma_pool_free(uhci->td_pool, td, td->dma_handle); in uhci_free_td()
/linux/drivers/usb/gadget/udc/
H A Dfsl_udc_core.c181 dma_pool_free(udc->td_pool, curr_td, curr_td->td_dma); in done()
776 dtd = dma_pool_alloc(udc_controller->td_pool, gfp_flags, dma); in fsl_build_dtd()
2498 udc_controller->td_pool = dma_pool_create("udc_td", &pdev->dev, in fsl_udc_probe()
2501 if (udc_controller->td_pool == NULL) { in fsl_udc_probe()
2515 dma_pool_destroy(udc_controller->td_pool); in fsl_udc_probe()
2553 dma_pool_destroy(udc_controller->td_pool); in fsl_udc_remove()
H A Dfsl_usb2_udc.h494 struct dma_pool *td_pool; /* dma pool for DTD */ member