| 887 | } |
| 888 | |
| 889 | static int |
| 890 | eth_igb_dev_uninit(struct rte_eth_dev *eth_dev) |
| 891 | { |
| 892 | PMD_INIT_FUNC_TRACE(); |
| 893 | |
| 894 | if (rte_eal_process_type() != RTE_PROC_PRIMARY) |
| 895 | return 0; |
| 896 | |
| 897 | eth_igb_close(eth_dev); |
| 898 | |
| 899 | return 0; |
| 900 | } |
| 901 | |
| 902 | /* |
| 903 | * Virtual Function device init |
no test coverage detected