X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-cli.git;a=blobdiff_plain;f=device.c;h=a159ff003c7f07f7b2669885e87fdbb44d5730b7;hp=ea4d073bf98cfd08156176d77b64cf72fa146ca3;hb=198182cc092b56a005e8990057bffb99794ec797;hpb=d75c85291a61a6d83386de95cff6ad279e853ebd diff --git a/device.c b/device.c index ea4d073..a159ff0 100644 --- a/device.c +++ b/device.c @@ -17,12 +17,10 @@ * along with this program. If not, see . */ -#include "sigrok-cli.h" -#include "config.h" +#include #include #include - -extern struct sr_context *sr_ctx; +#include "sigrok-cli.h" static void free_drvopts(struct sr_config *src) { @@ -44,7 +42,7 @@ GSList *device_scan(void) } else { /* No driver specified, let them all scan on their own. */ devices = NULL; - drivers = sr_driver_list(); + drivers = sr_driver_list(sr_ctx); for (i = 0; drivers[i]; i++) { driver = drivers[i]; if (sr_driver_init(sr_ctx, driver) != SR_OK) { @@ -64,19 +62,21 @@ GSList *device_scan(void) struct sr_channel_group *select_channel_group(struct sr_dev_inst *sdi) { struct sr_channel_group *cg; - GSList *l; + GSList *l, *channel_groups; if (!opt_channel_group) return NULL; - if (!sdi->channel_groups) { + channel_groups = sr_dev_inst_channel_groups_get(sdi); + + if (!channel_groups) { g_critical("This device does not have any channel groups."); return NULL; } - for (l = sdi->channel_groups; l; l = l->next) { + for (l = channel_groups; l; l = l->next) { cg = l->data; - if (!strcasecmp(opt_channel_group, cg->name)) { + if (!g_ascii_strcasecmp(opt_channel_group, cg->name)) { return cg; } } @@ -84,4 +84,3 @@ struct sr_channel_group *select_channel_group(struct sr_dev_inst *sdi) return NULL; } -