X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=output%2Foutput_analog.c;h=aef88c5f1eb3563c730ed10f542f68f9293be803;hb=ee4b6342afe8e42c0be481109b9b97e27cbb846a;hp=f00bffa342f0ffd8f6175d1a735c0e11985b676d;hpb=3a285098170ee6d5c7eab3fd94606e61a4fbaa19;p=libsigrok.git diff --git a/output/output_analog.c b/output/output_analog.c index f00bffa3..aef88c5f 100644 --- a/output/output_analog.c +++ b/output/output_analog.c @@ -92,7 +92,7 @@ static void flush_linebufs(struct context *ctx, char *outbuf) static int init(struct sr_output *o, int default_spl, enum outputmode mode) { struct context *ctx; - struct probe *probe; + struct sr_probe *probe; GSList *l; uint64_t samplerate; int num_probes; @@ -133,7 +133,7 @@ static int init(struct sr_output *o, int default_spl, enum outputmode mode) snprintf(ctx->header, 511, "%s\n", PACKAGE_STRING); num_probes = g_slist_length(o->device->probes); - if (o->device->plugin && device_has_hwcap(o->device, SR_HWCAP_SAMPLERATE)) { + if (o->device->plugin && sr_device_has_hwcap(o->device, SR_HWCAP_SAMPLERATE)) { samplerate = *((uint64_t *) o->device->plugin->get_device_info( o->device->plugin_index, SR_DI_CUR_SAMPLERATE)); if (!(samplerate_s = sr_samplerate_string(samplerate))) {