Browse Source

Icarus USB write failure is also a comms error

nfactor-troky
Kano 12 years ago
parent
commit
c2b1504e50
  1. 4
      driver-icarus.c

4
driver-icarus.c

@ -691,6 +691,10 @@ static int64_t icarus_scanhash(struct thr_info *thr, struct work *work, @@ -691,6 +691,10 @@ static int64_t icarus_scanhash(struct thr_info *thr, struct work *work,
ret = icarus_write(fd, ob_bin, sizeof(ob_bin));
if (ret) {
do_icarus_close(thr);
applog(LOG_ERR, "ICA%i: Comms error", icarus->device_id);
icarus->device_last_not_well = time(NULL);
icarus->device_not_well_reason = REASON_DEV_COMMS_ERROR;
icarus->dev_comms_error_count++;
return 0; /* This should never happen */
}

Loading…
Cancel
Save