| 699 | } |
| 700 | |
| 701 | int |
| 702 | ppt_disable_msix(struct vm *vm, int bus, int slot, int func) |
| 703 | { |
| 704 | struct pptdev *ppt; |
| 705 | int error; |
| 706 | |
| 707 | error = ppt_find(vm, bus, slot, func, &ppt); |
| 708 | if (error) |
| 709 | return (error); |
| 710 | |
| 711 | ppt_teardown_msix(ppt); |
| 712 | return (0); |
| 713 | } |
no test coverage detected