| 1748 | /* Virtual Function device uninit */ |
| 1749 | |
| 1750 | static int |
| 1751 | eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev) |
| 1752 | { |
| 1753 | PMD_INIT_FUNC_TRACE(); |
| 1754 | |
| 1755 | if (rte_eal_process_type() != RTE_PROC_PRIMARY) |
| 1756 | return 0; |
| 1757 | |
| 1758 | ixgbevf_dev_close(eth_dev); |
| 1759 | |
| 1760 | return 0; |
| 1761 | } |
| 1762 | |
| 1763 | static int |
| 1764 | eth_ixgbe_pci_probe(struct rte_pci_driver *pci_drv __rte_unused, |
no test coverage detected