]> sigrok.org Git - libsigrok.git/blobdiff - hardware/openbench-logic-sniffer/ols.h
sr/cli/gtk/qt: s/get_dev_info/dev_info_get/.
[libsigrok.git] / hardware / openbench-logic-sniffer / ols.h
index a554ae8c0b42239a1f26e71436fae017293cd31d..832413fd03cb88728e116e089af9b27968a4666f 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
@@ -17,8 +17,8 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef OLS_H_
-#define OLS_H_
+#ifndef LIBSIGROK_HARDWARE_OPENBENCH_LOGIC_SNIFFER_OLS_H
+#define LIBSIGROK_HARDWARE_OPENBENCH_LOGIC_SNIFFER_OLS_H
 
 #define NUM_PROBES             32
 #define NUM_TRIGGER_STAGES     4
@@ -59,7 +59,7 @@
 #define FLAG_CLOCK_INVERTED        0x80
 #define FLAG_RLE                   0x0100
 
-struct ols_device {
+struct ols_dev {
        uint32_t max_samplerate;
        uint32_t max_samples;
        uint32_t protocol_version;
@@ -88,7 +88,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 /* OLS_H_ */
+#endif