| 518 | } |
| 519 | |
| 520 | static int |
| 521 | eth_ngbe_dev_uninit(struct rte_eth_dev *eth_dev) |
| 522 | { |
| 523 | PMD_INIT_FUNC_TRACE(); |
| 524 | |
| 525 | if (rte_eal_process_type() != RTE_PROC_PRIMARY) |
| 526 | return 0; |
| 527 | |
| 528 | ngbe_dev_close(eth_dev); |
| 529 | |
| 530 | return 0; |
| 531 | } |
| 532 | |
| 533 | static int |
| 534 | eth_ngbe_pci_probe(struct rte_pci_driver *pci_drv __rte_unused, |
no test coverage detected