]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/link-mso19/api.c
Remove unnecessary driver context checks
[libsigrok.git] / src / hardware / link-mso19 / api.c
index faee455c42408eebaeadf93cc5d4f565e6c8f988..c35fc718903eb41b202786432250ac1e43460bc5 100644 (file)
@@ -55,15 +55,12 @@ SR_PRIV struct sr_dev_driver link_mso19_driver_info;
 /* TODO: Use sr_dev_inst to store connection handle & use std_dev_clear(). */
 static int dev_clear(const struct sr_dev_driver *di)
 {
+       struct drv_context *drvc = di->context;
        GSList *l;
        struct sr_dev_inst *sdi;
-       struct drv_context *drvc;
        struct dev_context *devc;
        int ret = SR_OK;
 
-       if (!(drvc = di->context))
-               return SR_OK;
-
        /* Properly close and free all devices. */
        for (l = drvc->instances; l; l = l->next) {
                if (!(sdi = l->data)) {