mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-09 14:28:12 +00:00
Use WRITEIOERR macro check for all usb writes.
This commit is contained in:
parent
38164d637d
commit
8b38d7fec8
@ -2757,7 +2757,7 @@ int _usb_write(struct cgpu_info *cgpu, int intinfo, int epinfo, char *buf, size_
|
||||
|
||||
USBDEBUG("USB debug: @_usb_write(%s (nodev=%s)) err=%d%s sent=%d", cgpu->drv->name, bool_str(cgpu->usbinfo.nodev), err, isnodev(err), sent);
|
||||
|
||||
IOERR_CHECK(cgpu, err);
|
||||
WRITEIOERR_CHECK(cgpu, err);
|
||||
|
||||
tot += sent;
|
||||
|
||||
@ -2876,7 +2876,7 @@ int __usb_transfer(struct cgpu_info *cgpu, uint8_t request_type, uint8_t bReques
|
||||
|
||||
USBDEBUG("USB debug: @_usb_transfer(%s (nodev=%s)) err=%d%s", cgpu->drv->name, bool_str(cgpu->usbinfo.nodev), err, isnodev(err));
|
||||
|
||||
IOERR_CHECK(cgpu, err);
|
||||
WRITEIOERR_CHECK(cgpu, err);
|
||||
|
||||
if (err < 0 && err != LIBUSB_ERROR_TIMEOUT) {
|
||||
applog(LOG_WARNING, "%s %i usb transfer err:(%d) %s", cgpu->drv->name, cgpu->device_id,
|
||||
|
Loading…
Reference in New Issue
Block a user