| 2386 | } |
| 2387 | |
| 2388 | static int eth_ena_dev_uninit(struct rte_eth_dev *eth_dev) |
| 2389 | { |
| 2390 | if (rte_eal_process_type() != RTE_PROC_PRIMARY) |
| 2391 | return 0; |
| 2392 | |
| 2393 | ena_destroy_device(eth_dev); |
| 2394 | |
| 2395 | return 0; |
| 2396 | } |
| 2397 | |
| 2398 | static int ena_dev_configure(struct rte_eth_dev *dev) |
| 2399 | { |
nothing calls this directly
no test coverage detected