| 19 | static struct mvep mvep; |
| 20 | |
| 21 | int rte_mvep_init(enum mvep_module_type module __rte_unused, |
| 22 | struct rte_kvargs *kvlist __rte_unused) |
| 23 | { |
| 24 | int ret; |
| 25 | |
| 26 | if (!mvep.ref_count) { |
| 27 | ret = mv_sys_dma_mem_init(MRVL_MUSDK_DMA_MEMSIZE); |
| 28 | if (ret) |
| 29 | return ret; |
| 30 | } |
| 31 | |
| 32 | mvep.ref_count++; |
| 33 | |
| 34 | return 0; |
| 35 | } |
| 36 | |
| 37 | int rte_mvep_deinit(enum mvep_module_type module __rte_unused) |
| 38 | { |
no outgoing calls
no test coverage detected