diff --git a/host/libhackrf/src/hackrf.c b/host/libhackrf/src/hackrf.c index 01b0e0de2..efe56ba31 100644 --- a/host/libhackrf/src/hackrf.c +++ b/host/libhackrf/src/hackrf.c @@ -729,11 +729,11 @@ static int hackrf_open_setup(libusb_device_handle* usb_device, hackrf_device** d } // WinUSB: Use RAW_IO to improve throughput on RX -//#if LIBUSB_API_VERSION >= 0x0100010B - if(libusb_endpoint_supports_raw_io(usb_device, RX_ENDPOINT_ADDRESS) == 1) { + //#if LIBUSB_API_VERSION >= 0x0100010B + if (libusb_endpoint_supports_raw_io(usb_device, RX_ENDPOINT_ADDRESS) == 1) { libusb_endpoint_set_raw_io(usb_device, RX_ENDPOINT_ADDRESS, 1); } -//#endif + //#endif lib_device->usb_device = usb_device; lib_device->transfers = NULL;