usb_audio: Disable for 2.0 devices.

It does not seem to work and causes high CPU usage.
This commit is contained in:
Augustin Cavalier 2024-02-03 09:56:38 -05:00
parent 34d116cc34
commit 7f07b9f63d
1 changed files with 5 additions and 0 deletions

View File

@ -37,6 +37,11 @@ Device::Device(usb_device device)
fProductID = deviceDescriptor->product_id;
fUSBVersion = deviceDescriptor->usb_version;
#if 1
if (fUSBVersion >= 0x200)
return;
#endif
fBuffersReadySem = create_sem(0, DRIVER_NAME "_buffers_ready");
if (fBuffersReadySem < B_OK) {
TRACE(ERR, "Error of creating ready "