X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Fbrymen-bm86x%2Fapi.c;h=65fcb428ef078af0817dad445e9c4fecfd14b8d5;hb=c368e6f3d248a73d69cd0c2c4a7c88a92def55e3;hp=38c130d290a44e1eebf5dd26364e06debbf89b81;hpb=aac29cc192ccf82b64e77b5e6b11b411da32deed;p=libsigrok.git diff --git a/src/hardware/brymen-bm86x/api.c b/src/hardware/brymen-bm86x/api.c index 38c130d2..65fcb428 100644 --- a/src/hardware/brymen-bm86x/api.c +++ b/src/hardware/brymen-bm86x/api.c @@ -77,19 +77,12 @@ static GSList *scan(GSList *options) sdi->status = SR_ST_INACTIVE; sdi->vendor = g_strdup("Brymen"); sdi->model = g_strdup("BM869"); - - if (!(devc = g_try_malloc0(sizeof(*devc)))) { - sr_err("Device context malloc failed."); - return NULL; - } - + devc = g_malloc0(sizeof(struct dev_context)); sdi->priv = devc; sdi->driver = di; - if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "P1"))) - return NULL; + ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "P1"); sdi->channels = g_slist_append(sdi->channels, ch); - if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "P2"))) - return NULL; + ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "P2"); sdi->channels = g_slist_append(sdi->channels, ch); sdi->inst_type = SR_INST_USB;