Skip to content

Commit d63aa2b

Browse files
committed
Demote bad checksum message in cointerra driver but allow message to still be parsed since it won't allow existing firmwares to work otherwise
1 parent 778c22b commit d63aa2b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

driver-cointerra.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -668,8 +668,7 @@ static void cta_parse_msg(struct thr_info *thr, struct cgpu_info *cointerra,
668668
(buf[CTA_MSG_TYPE] != CTA_RECV_WDONE)) {
669669
if (unlikely(verify_checksum(buf) == 0)) {
670670
inc_hw_errors(thr);
671-
applog(LOG_WARNING, "%s %d: checksum bad",cointerra->drv->name,cointerra->device_id);
672-
return;
671+
applog(LOG_INFO, "%s %d: checksum bad",cointerra->drv->name,cointerra->device_id);
673672
}
674673
}
675674

0 commit comments

Comments
 (0)