Virtual Function device uninit */
| 317 | |
| 318 | /* Virtual Function device uninit */ |
| 319 | static int |
| 320 | eth_txgbevf_dev_uninit(struct rte_eth_dev *eth_dev) |
| 321 | { |
| 322 | PMD_INIT_FUNC_TRACE(); |
| 323 | |
| 324 | if (rte_eal_process_type() != RTE_PROC_PRIMARY) |
| 325 | return 0; |
| 326 | |
| 327 | txgbevf_dev_close(eth_dev); |
| 328 | |
| 329 | return 0; |
| 330 | } |
| 331 | |
| 332 | static int eth_txgbevf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused, |
| 333 | struct rte_pci_device *pci_dev) |
no test coverage detected