libztex: removed an unused struct member (ztex->valid)
diff --git a/libztex.c b/libztex.c
index 2a20468..13965ca 100644
--- a/libztex.c
+++ b/libztex.c
@@ -696,7 +696,6 @@ int libztex_prepare_device(struct libusb_device *dev, struct libztex_device** zt
newdev->usbbus = libusb_get_bus_number(dev);
newdev->usbaddress = libusb_get_device_address(dev);
sprintf(newdev->repr, "ZTEX %s-1", newdev->snString);
- newdev->valid = true;
return 0;
}
@@ -777,7 +776,6 @@ int libztex_scanDevices(struct libztex_dev_list*** devs_p)
ztex->bitFileName = NULL;
ztex->numberOfFpgas = -1;
- ztex->valid = false;
err = libztex_prepare_device(list[usbdevices[i]], &ztex);
if (unlikely(err != 0)) {
diff --git a/libztex.h b/libztex.h
index 51fe30a..ffd056e 100644
--- a/libztex.h
+++ b/libztex.h
@@ -47,7 +47,6 @@ struct libztex_device {
pthread_mutex_t mutex;
struct libztex_device *root;
int16_t fpgaNum;
- bool valid;
struct libusb_device_descriptor descriptor;
libusb_device_handle *hndl;
unsigned char usbbus;