X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Fbeaglelogic%2Fapi.c;h=5a7068c4407020297543d0c56726a2941f7bbac1;hb=603643fa71d5f3523e81bbda079eeebbeaeb2273;hp=b567c1f94c7f2a62b11faa188af4124d1c3993fb;hpb=f82525e60d50c7bd06e2d398c3244a6b3aecc46a;p=libsigrok.git diff --git a/src/hardware/beaglelogic/api.c b/src/hardware/beaglelogic/api.c index b567c1f9..5a7068c4 100644 --- a/src/hardware/beaglelogic/api.c +++ b/src/hardware/beaglelogic/api.c @@ -59,20 +59,6 @@ static const uint64_t samplerates[] = { SR_HZ(1), }; -static struct dev_context *beaglelogic_devc_alloc(void) -{ - struct dev_context *devc; - - devc = g_malloc0(sizeof(struct dev_context)); - - /* Default non-zero values (if any) */ - devc->fd = -1; - devc->limit_samples = (uint64_t)10000000; - devc->tcp_buffer = 0; - - return devc; -} - static GSList *scan(struct sr_dev_driver *di, GSList *options) { GSList *l; @@ -117,7 +103,12 @@ static GSList *scan(struct sr_dev_driver *di, GSList *options) sdi->model = g_strdup("BeagleLogic"); sdi->version = g_strdup("1.0"); - devc = beaglelogic_devc_alloc(); + devc = g_malloc0(sizeof(struct dev_context)); + + /* Default non-zero values (if any) */ + devc->fd = -1; + devc->limit_samples = (uint64_t)10000000; + devc->tcp_buffer = 0; if (!conn) { devc->beaglelogic = &beaglelogic_native_ops;