Browse Source

Merge pull request #351 from denis2342/ztex

libztex: in case the selectFpga() failed set the selected fpga to unknown
nfactor-troky
Con Kolivas 12 years ago
parent
commit
6d848e27b2
  1. 1
      libztex.c

1
libztex.c

@ -535,6 +535,7 @@ int libztex_selectFpga(struct libztex_device *ztex) @@ -535,6 +535,7 @@ int libztex_selectFpga(struct libztex_device *ztex)
cnt = libusb_control_transfer(ztex->root->hndl, 0x40, 0x51, (uint16_t)number, 0, NULL, 0, 500);
if (unlikely(cnt < 0)) {
applog(LOG_ERR, "Ztex check device: Failed to set fpga with err %d", cnt);
ztex->root->selectedFpga = -1;
return cnt;
}
ztex->root->selectedFpga = number;

Loading…
Cancel
Save