]> sigrok.org Git - libsigrok.git/blobdiff - hardware/openbench-logic-sniffer/ols.h
sr: fx2lafw: Braintechnology USB-LPS support.
[libsigrok.git] / hardware / openbench-logic-sniffer / ols.h
index 0b1a61361c0297618381eb25ab1333073a249f91..f452c74846876bb81d5e507b08710fdcb02a3b6f 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the sigrok project.
  *
- * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
+ * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
  *
  * 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
@@ -59,7 +59,8 @@
 #define FLAG_CLOCK_INVERTED        0x80
 #define FLAG_RLE                   0x0100
 
-struct ols_device {
+/* Private, per-device-instance driver context. */
+struct context {
        uint32_t max_samplerate;
        uint32_t max_samples;
        uint32_t protocol_version;
@@ -88,7 +89,7 @@ struct ols_device {
        unsigned char tmp_sample[4];
        unsigned char *raw_sample_buf;
 
-       struct sr_serial_device_instance *serial;
+       struct sr_serial_dev_inst *serial;
 };
 
 #endif