1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-22 20:44:19 +00:00

Merge branch 'master' of github.com:ckolivas/cgminer into redfury

This commit is contained in:
Con Kolivas 2013-09-27 11:00:48 +10:00
commit 8e4909f8d5

View File

@ -2296,7 +2296,7 @@ usb_bulk_transfer(struct libusb_device_handle *dev_handle,
if (length > MaxPacketSize)
length = MaxPacketSize;
buf = alloca(MaxPacketSize);
if (endpoint == LIBUSB_ENDPOINT_OUT)
if ((endpoint & LIBUSB_ENDPOINT_DIR_MASK) == LIBUSB_ENDPOINT_OUT)
memcpy(buf, data, length);
USBDEBUG("USB debug: @usb_bulk_transfer(%s (nodev=%s),endpoint=%d,data=%p,length=%d,timeout=%u,mode=%d,cmd=%s,seq=%d)", cgpu->drv->name, bool_str(cgpu->usbinfo.nodev), (int)endpoint, data, length, timeout, mode, usb_cmdname(cmd), seq);