X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fscpi%2Fscpi_libgpib.c;h=7632f74c9dc2ecf530986011ae02b08dd402f8cc;hb=04229f7bfc750f2b67e8dd54ac82ae6bb7eae1e4;hp=62d99c0a371851135eec88c799225b42d164c9f1;hpb=c1aae90038456a61d0f9313d34e6107c3440d3e7;p=libsigrok.git diff --git a/src/scpi/scpi_libgpib.c b/src/scpi/scpi_libgpib.c index 62d99c0a..7632f74c 100644 --- a/src/scpi/scpi_libgpib.c +++ b/src/scpi/scpi_libgpib.c @@ -17,10 +17,12 @@ * along with this program. If not, see . */ +#include #include #include #include #include "libsigrok-internal.h" +#include "scpi.h" #define LOG_PREFIX "scpi_gpib" @@ -47,9 +49,9 @@ static int scpi_gpib_dev_inst_new(void *priv, struct drv_context *drvc, return SR_OK; } -static int scpi_gpib_open(void *priv) +static int scpi_gpib_open(struct sr_scpi_dev_inst *scpi) { - struct scpi_gpib *gscpi = priv; + struct scpi_gpib *gscpi = scpi->priv; if ((gscpi->descriptor = ibfind(gscpi->name)) < 0) return SR_ERR; @@ -90,7 +92,7 @@ static int scpi_gpib_send(void *priv, const char *command) if (ibcnt < len) { sr_err("Failed to send all of SCPI command: '%s': " - "len = %d, ibcnt = .", command, len, ibcnt); + "len = %d, ibcnt = %d.", command, len, ibcnt); return SR_ERR; } @@ -132,9 +134,9 @@ static int scpi_gpib_read_complete(void *priv) return gscpi->read_started && (ibsta & END); } -static int scpi_gpib_close(void *priv) +static int scpi_gpib_close(struct sr_scpi_dev_inst *scpi) { - struct scpi_gpib *gscpi = priv; + struct scpi_gpib *gscpi = scpi->priv; ibonl(gscpi->descriptor, 0);