dreamsourcelab-dslogic: Don't check for USB manufacturer/product.

Before firmware upload some models (e.g. the original DSLogic or the
DSLogic Pro) don't have any USB manufacturer or product strings set, so
they wouldn't be detected.
This commit is contained in:
Uwe Hermann 2017-06-21 07:53:20 +02:00
parent 7962b129c3
commit 4984ca28f7
1 changed files with 1 additions and 4 deletions

View File

@ -217,10 +217,7 @@ static GSList *scan(struct sr_dev_driver *di, GSList *options)
prof = NULL;
for (j = 0; supported_device[j].vid; j++) {
if (des.idVendor == supported_device[j].vid &&
des.idProduct == supported_device[j].pid &&
(!strcmp(manufacturer, supported_device[j].usb_manufacturer)) &&
(!strcmp(product, "USB-based Instrument") ||
!strcmp(product, supported_device[j].usb_product))) {
des.idProduct == supported_device[j].pid) {
prof = &supported_device[j];
break;
}