| 1601 | } |
| 1602 | |
| 1603 | static int |
| 1604 | nfp_pf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused, |
| 1605 | struct rte_pci_device *dev) |
| 1606 | { |
| 1607 | if (rte_eal_process_type() == RTE_PROC_PRIMARY) |
| 1608 | return nfp_pf_init(dev); |
| 1609 | else |
| 1610 | return nfp_pf_secondary_init(dev); |
| 1611 | } |
| 1612 | |
| 1613 | static const struct rte_pci_id pci_id_nfp_pf_net_map[] = { |
| 1614 | { |
nothing calls this directly
no test coverage detected