| 6125 | } |
| 6126 | |
| 6127 | static int |
| 6128 | bnxt_dev_uninit(struct rte_eth_dev *eth_dev) |
| 6129 | { |
| 6130 | if (rte_eal_process_type() != RTE_PROC_PRIMARY) |
| 6131 | return -EPERM; |
| 6132 | |
| 6133 | PMD_DRV_LOG(DEBUG, "Calling Device uninit\n"); |
| 6134 | |
| 6135 | if (eth_dev->state != RTE_ETH_DEV_UNUSED) |
| 6136 | bnxt_dev_close_op(eth_dev); |
| 6137 | |
| 6138 | return 0; |
| 6139 | } |
| 6140 | |
| 6141 | static int bnxt_pci_remove_dev_with_reps(struct rte_eth_dev *eth_dev) |
| 6142 | { |
no test coverage detected