X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=device.c;h=a1556aa4e37244cb57bdf97f7ec644771cc70b7a;hb=1352eeddd4d164b58f2233ae109432b73faab539;hp=0cc5e55256978230eb565aa879ad22b74d31ff2e;hpb=b53738baf76219237e0a6629905981d7a1f2508e;p=libsigrok.git diff --git a/device.c b/device.c index 0cc5e552..a1556aa4 100644 --- a/device.c +++ b/device.c @@ -65,8 +65,8 @@ void sr_device_close_all(void) while (devices) { device = devices->data; - if (device->plugin && device->plugin->close) - device->plugin->close(device->plugin_index); + if (device->plugin && device->plugin->closedev) + device->plugin->closedev(device->plugin_index); sr_device_destroy(device); } } @@ -194,7 +194,7 @@ struct sr_probe *sr_device_probe_find(struct sr_device *device, int probenum) return found_probe; } -/* TODO: return SIGROK_ERR if probenum not found */ +/* TODO: return SR_ERR if probenum not found */ void sr_device_probe_name(struct sr_device *device, int probenum, const char *name) { @@ -209,7 +209,7 @@ void sr_device_probe_name(struct sr_device *device, int probenum, p->name = g_strdup(name); } -/* TODO: return SIGROK_ERR if probenum not found */ +/* TODO: return SR_ERR if probenum not found */ void sr_device_trigger_clear(struct sr_device *device) { struct sr_probe *p; @@ -227,7 +227,7 @@ void sr_device_trigger_clear(struct sr_device *device) } } -/* TODO: return SIGROK_ERR if probenum not found */ +/* TODO: return SR_ERR if probenum not found */ void sr_device_trigger_set(struct sr_device *device, int probenum, const char *trigger) {