| 370 | } |
| 371 | |
| 372 | static void |
| 373 | ppt_pci_reset(device_t dev) |
| 374 | { |
| 375 | |
| 376 | if (pcie_flr(dev, |
| 377 | max(pcie_get_max_completion_timeout(dev) / 1000, 10), true)) |
| 378 | return; |
| 379 | |
| 380 | pci_power_reset(dev); |
| 381 | } |
| 382 | |
| 383 | int |
| 384 | ppt_assign_device(struct vm *vm, int bus, int slot, int func) |
no test coverage detected