Restore a PCI device from `vfio-pci` back to the host's default driver.
(sysfs: &SysfsRoot, bdf: &str)
| 202 | |
| 203 | /// Restore a PCI device from `vfio-pci` back to the host's default driver. |
| 204 | pub(crate) fn restore_to_host_driver(sysfs: &SysfsRoot, bdf: &str) -> Result<(), VfioError> { |
| 205 | restore_to_host_driver_ex(sysfs, bdf, false) |
| 206 | } |
| 207 | |
| 208 | /// Inner restore implementation. |
| 209 | /// |