GCAdapter: don't call libusb_detach_kernel_driver on apple

This commit is contained in:
Shawn Hoffman 2022-04-22 08:58:38 -07:00
parent 5cd3cf9072
commit 12cd81bdb3
1 changed files with 4 additions and 0 deletions

View File

@ -339,8 +339,12 @@ static bool CheckDeviceAccess(libusb_device* device)
ret = libusb_kernel_driver_active(s_handle, 0);
if (ret == 1)
{
// On macos detaching would fail without root or entitlement.
// We assume user is using GCAdapterDriver and therefor don't want to detach anything
#if !defined(__APPLE__)
ret = libusb_detach_kernel_driver(s_handle, 0);
detach_failed = ret < 0 && ret != LIBUSB_ERROR_NOT_FOUND && ret != LIBUSB_ERROR_NOT_SUPPORTED;
#endif
if (detach_failed)
ERROR_LOG_FMT(CONTROLLERINTERFACE, "libusb_detach_kernel_driver failed with error: {}", ret);
}