| 111 | } |
| 112 | |
| 113 | void |
| 114 | pci_free(struct rte_pci_device_internal *pdev) |
| 115 | { |
| 116 | if (pdev == NULL) |
| 117 | return; |
| 118 | free(pdev->device.bus_info); |
| 119 | free(pdev); |
| 120 | } |
| 121 | |
| 122 | /* map a particular resource from a file */ |
| 123 | void * |
no test coverage detected