| 16 | |
| 17 | static sfc_efx_mcdi_dma_alloc_cb sfc_mcdi_dma_alloc; |
| 18 | static int |
| 19 | sfc_mcdi_dma_alloc(void *cookie, const char *name, size_t len, |
| 20 | efsys_mem_t *esmp) |
| 21 | { |
| 22 | struct sfc_adapter *sa = cookie; |
| 23 | |
| 24 | return sfc_dma_alloc(sa, name, 0, EFX_NIC_DMA_ADDR_MCDI_BUF, len, |
| 25 | sa->socket_id, esmp); |
| 26 | } |
| 27 | |
| 28 | static sfc_efx_mcdi_dma_free_cb sfc_mcdi_dma_free; |
| 29 | static void |
nothing calls this directly
no test coverage detected