]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/ikalogic-scanaplus/protocol.h
drivers: Drop unneeded or duplicate comments.
[libsigrok.git] / src / hardware / ikalogic-scanaplus / protocol.h
index f797832449cbbe9c5341c3eae744520fcd1c6f2f..fde2e4e2ef8a174265d64292f4a08e5b3b08759a 100644 (file)
 
 #define COMPRESSED_BUF_SIZE (64 * 1024)
 
-/* Private, per-device-instance driver context. */
 struct dev_context {
-       /** FTDI device context (used by libftdi). */
        struct ftdi_context *ftdic;
-
-       /** The current sampling limit (in ms). */
        uint64_t limit_msec;
-
-       /** The current sampling limit (in number of samples). */
        uint64_t limit_samples;
 
        uint8_t *compressed_buf;