| 319 | } |
| 320 | |
| 321 | static int |
| 322 | eth_em_dev_uninit(struct rte_eth_dev *eth_dev) |
| 323 | { |
| 324 | PMD_INIT_FUNC_TRACE(); |
| 325 | |
| 326 | if (rte_eal_process_type() != RTE_PROC_PRIMARY) |
| 327 | return 0; |
| 328 | |
| 329 | eth_em_close(eth_dev); |
| 330 | |
| 331 | return 0; |
| 332 | } |
| 333 | |
| 334 | static int eth_em_pci_probe(struct rte_pci_driver *pci_drv __rte_unused, |
| 335 | struct rte_pci_device *pci_dev) |
nothing calls this directly
no test coverage detected