X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=input%2Fbinary.c;h=59c79c436fdda64f16c94fbc425969a2bbe55027;hb=c73d2ea421c2b425c3f0ae33bce2bfd0c448ca5f;hp=f00a14b89a50272c62b40eedf0bab9c5dd8c4723;hpb=7c1d391c8b33bf76f7c6617fe9d5174e16a04f95;p=libsigrok.git diff --git a/input/binary.c b/input/binary.c index f00a14b8..59c79c43 100644 --- a/input/binary.c +++ b/input/binary.c @@ -1,7 +1,7 @@ /* * This file is part of the sigrok project. * - * Copyright (C) 2010 Bert Vermeulen + * Copyright (C) 2010-2012 Bert Vermeulen * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -51,12 +51,12 @@ static int init(struct sr_input *in) } /* Create a virtual device. */ - in->vdevice = sr_device_new(NULL, 0); + in->vdevice = sr_dev_new(NULL, 0); for (i = 0; i < num_probes; i++) { snprintf(name, SR_MAX_PROBENAME_LEN, "%d", i); /* TODO: Check return value. */ - sr_device_probe_add(in->vdevice, name); + sr_dev_probe_add(in->vdevice, name); } return SR_OK;