Icarus USB write failure is also a comms error
diff --git a/driver-icarus.c b/driver-icarus.c
index cc74df2..b3aa34b 100644
--- a/driver-icarus.c
+++ b/driver-icarus.c
@@ -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 */
}