X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Finput%2Fbinary.c;h=736e4cf24e043133161be90c9bf4735716d06f98;hb=2a8f2d41adcd0aa9e498c4eea2a5f82263039e5c;hp=f9e49de17cb84d766b5a59601c569cb490957050;hpb=c7bc82ffa1b09a228a8395049e2b691cd7bd85f8;p=libsigrok.git diff --git a/src/input/binary.c b/src/input/binary.c index f9e49de1..736e4cf2 100644 --- a/src/input/binary.c +++ b/src/input/binary.c @@ -17,13 +17,14 @@ * along with this program. If not, see . */ +#include #include #include #include #include #include #include -#include "libsigrok.h" +#include #include "libsigrok-internal.h" #define LOG_PREFIX "input/binary" @@ -39,7 +40,6 @@ struct context { static int init(struct sr_input *in, GHashTable *options) { - struct sr_channel *ch; struct context *inc; int num_channels, i; char name[16]; @@ -57,8 +57,7 @@ static int init(struct sr_input *in, GHashTable *options) for (i = 0; i < num_channels; i++) { snprintf(name, 16, "%d", i); - ch = sr_channel_new(i, SR_CHANNEL_LOGIC, TRUE, name); - in->sdi->channels = g_slist_append(in->sdi->channels, ch); + sr_channel_new(in->sdi, i, SR_CHANNEL_LOGIC, TRUE, name); } return SR_OK;