X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Fopenbench-logic-sniffer%2Fapi.c;h=acbb971823846f326d72c7880765562da55ade70;hb=2cb63065f525655d3abccc1b26edd7275937b034;hp=f5a6647108fb9103e111864359db8b7a5581cb3a;hpb=63ea6141b6ed7ae9d268892a1d76db5e7969ac38;p=libsigrok.git diff --git a/src/hardware/openbench-logic-sniffer/api.c b/src/hardware/openbench-logic-sniffer/api.c index f5a66471..acbb9718 100644 --- a/src/hardware/openbench-logic-sniffer/api.c +++ b/src/hardware/openbench-logic-sniffer/api.c @@ -128,8 +128,7 @@ static GSList *scan(GSList *options) if (serialcomm == NULL) serialcomm = SERIALCOMM; - if (!(serial = sr_serial_dev_inst_new(conn, serialcomm))) - return NULL; + serial = sr_serial_dev_inst_new(conn, serialcomm); /* The discovery procedure is like this: first send the Reset * command (0x00) 5 times, since the device could be anywhere @@ -180,16 +179,15 @@ static GSList *scan(GSList *options) } else { /* Not an OLS -- some other board that uses the sump protocol. */ sr_info("Device does not support metadata."); - sdi = sr_dev_inst_new(); + sdi = g_malloc0(sizeof(struct sr_dev_inst)); sdi->status = SR_ST_INACTIVE; sdi->vendor = g_strdup("Sump"); sdi->model = g_strdup("Logic Analyzer"); sdi->version = g_strdup("v1.0"); sdi->driver = di; for (i = 0; i < 32; i++) { - if (!(ch = sr_channel_new(i, SR_CHANNEL_LOGIC, TRUE, - ols_channel_names[i]))) - return 0; + ch = sr_channel_new(i, SR_CHANNEL_LOGIC, TRUE, + ols_channel_names[i]); sdi->channels = g_slist_append(sdi->channels, ch); } devc = ols_dev_new();