X-Git-Url: http://sigrok.org/gitweb/?p=libsigrok.git;a=blobdiff_plain;f=src%2Fhardware%2Fasix-sigma%2Fapi.c;h=163032c335079dc730300ee35894ffab18cc3ba5;hp=bc6c87e86ebd51baf49e5c710f7daa587416b48b;hb=ca314e060f653e6a0b5ec0f58914bac4d426217f;hpb=c8e789fa0c7264f8356b0446367cc1252fadfe4c diff --git a/src/hardware/asix-sigma/api.c b/src/hardware/asix-sigma/api.c index bc6c87e8..163032c3 100644 --- a/src/hardware/asix-sigma/api.c +++ b/src/hardware/asix-sigma/api.c @@ -19,10 +19,6 @@ * along with this program. If not, see . */ -/* - * ASIX SIGMA/SIGMA2 logic analyzer driver - */ - #include #include "protocol.h" @@ -85,8 +81,6 @@ static GSList *scan(struct sr_dev_driver *di, GSList *options) ftdi_init(&devc->ftdic); - /* Look for SIGMAs. */ - if ((ret = ftdi_usb_find_all(&devc->ftdic, &devlist, USB_VENDOR, USB_PRODUCT)) <= 0) { if (ret < 0) @@ -116,7 +110,6 @@ static GSList *scan(struct sr_dev_driver *di, GSList *options) devc->capture_ratio = 50; devc->use_triggers = 0; - /* Register SIGMA device. */ sdi = g_malloc0(sizeof(struct sr_dev_inst)); sdi->status = SR_ST_INITIALIZING; sdi->vendor = g_strdup(USB_VENDOR_NAME); @@ -127,7 +120,6 @@ static GSList *scan(struct sr_dev_driver *di, GSList *options) sdi->priv = devc; - /* We will open the device again when we need it. */ ftdi_list_free(&devlist); return std_scan_complete(di, g_slist_append(NULL, sdi));