X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Frdtech-um%2Fapi.c;h=3f086ae63f2a0e16518581b95bf3e1edde5f9917;hb=bc9aa94b92c5ac0271769af4605992d7a38e65bc;hp=863ba972cd99ea16807a709a05645db1ff45bf6a;hpb=c1f4f5894782580e78c47b68b9e2d0da2723e829;p=libsigrok.git diff --git a/src/hardware/rdtech-um/api.c b/src/hardware/rdtech-um/api.c index 863ba972..3f086ae6 100644 --- a/src/hardware/rdtech-um/api.c +++ b/src/hardware/rdtech-um/api.c @@ -67,19 +67,18 @@ static GSList *rdtech_um_scan(struct sr_dev_driver *di, goto err_out_serial; } - devc = g_malloc0(sizeof(struct dev_context)); - sdi = g_malloc0(sizeof(struct sr_dev_inst)); - + devc = g_malloc0(sizeof(*devc)); sr_sw_limits_init(&devc->limits); devc->profile = p; + sdi = g_malloc0(sizeof(*sdi)); + sdi->priv = devc; sdi->status = SR_ST_INACTIVE; sdi->vendor = g_strdup("RDTech"); sdi->model = g_strdup(p->model_name); sdi->version = NULL; sdi->inst_type = SR_INST_SERIAL; sdi->conn = serial; - sdi->priv = devc; for (ch_idx = 0; (name = p->channels[ch_idx].name); ch_idx++) sr_channel_new(sdi, ch_idx, SR_CHANNEL_ANALOG, TRUE, name);