Insert a device into a predefined position in PCI bus */
| 529 | |
| 530 | /* Insert a device into a predefined position in PCI bus */ |
| 531 | void |
| 532 | rte_pci_insert_device(struct rte_pci_device *exist_pci_dev, |
| 533 | struct rte_pci_device *new_pci_dev) |
| 534 | { |
| 535 | TAILQ_INSERT_BEFORE(exist_pci_dev, new_pci_dev, next); |
| 536 | } |
| 537 | |
| 538 | /* Remove a device from PCI bus */ |
| 539 | static void |
no outgoing calls
no test coverage detected