| 813 | } |
| 814 | |
| 815 | static int |
| 816 | eth_txgbe_dev_uninit(struct rte_eth_dev *eth_dev) |
| 817 | { |
| 818 | PMD_INIT_FUNC_TRACE(); |
| 819 | |
| 820 | if (rte_eal_process_type() != RTE_PROC_PRIMARY) |
| 821 | return 0; |
| 822 | |
| 823 | txgbe_dev_close(eth_dev); |
| 824 | |
| 825 | return 0; |
| 826 | } |
| 827 | |
| 828 | static int txgbe_ntuple_filter_uninit(struct rte_eth_dev *eth_dev) |
| 829 | { |
no test coverage detected