]> sigrok.org Git - libsigrok.git/commitdiff
Various minor whitespace fixes.
authorUwe Hermann <redacted>
Fri, 20 Mar 2015 13:36:47 +0000 (14:36 +0100)
committerUwe Hermann <redacted>
Sat, 21 Mar 2015 18:28:54 +0000 (19:28 +0100)
41 files changed:
src/device.c
src/hardware/asix-sigma/asix-sigma.c
src/hardware/atten-pps3xxx/api.c
src/hardware/atten-pps3xxx/protocol.c
src/hardware/cem-dt-885x/api.c
src/hardware/cem-dt-885x/protocol.c
src/hardware/demo/demo.c
src/hardware/fluke-dmm/fluke.c
src/hardware/gmc-mh-1x-2x/api.c
src/hardware/gmc-mh-1x-2x/protocol.c
src/hardware/kecheng-kc-330b/api.c
src/hardware/lascar-el-usb/api.c
src/hardware/lascar-el-usb/protocol.c
src/hardware/motech-lps-30x/api.c
src/hardware/motech-lps-30x/protocol.c
src/hardware/norma-dmm/api.c
src/hardware/openbench-logic-sniffer/protocol.h
src/hardware/pipistrello-ols/api.c
src/hardware/pipistrello-ols/protocol.c
src/hardware/pipistrello-ols/protocol.h
src/hardware/scpi-pps/profiles.c
src/hardware/testo/protocol.c
src/hardware/testo/protocol.h
src/hardware/uni-t-ut32x/api.c
src/hardware/uni-t-ut32x/protocol.c
src/hardware/victor-dmm/api.c
src/hardware/yokogawa-dlm/protocol.h
src/hardware/yokogawa-dlm/protocol_wrappers.c
src/input/input.c
src/input/vcd.c
src/input/wav.c
src/lcr/es51919.c
src/output/ascii.c
src/output/gnuplot.c
src/output/hex.c
src/output/srzip.c
src/output/wav.c
src/scpi/scpi_usbtmc_libusb.c
src/session.c
src/session_file.c
src/soft-trigger.c

index b1c7eae120c7455dc90124ced38366fc5434631f..3eef7b9efe2a907ee8e29a461bcf34f57cbbcbfe 100644 (file)
@@ -544,7 +544,6 @@ SR_API const char *sr_dev_inst_connid_get(const struct sr_dev_inst *sdi)
        }
 #endif
 
-
 #ifdef HAVE_LIBUSB_1_0
        if ((!sdi->connection_id) && (sdi->inst_type == SR_INST_USB)) {
                /* connection_id isn't populated, let's do that here. */
index dac6e011dabaddc7d2c516ebb44de4fc791eb368..6268747aedc740c11ad21d70dff8f1314df6bc01 100644 (file)
@@ -783,7 +783,6 @@ static int convert_trigger(const struct sr_dev_inst *sdi)
                }
        }
 
-
        return SR_OK;
 }
 
@@ -949,7 +948,6 @@ static int get_trigger_offset(uint8_t *samples, uint16_t last_sample,
        return i & 0x7;
 }
 
-
 /*
  * Return the timestamp of "DRAM cluster".
  */
index 359121f0e69b0d783fbda15ad22de12615775fb9..ceae0274260f16ee1ea3d5d4fab7888f62cccb83 100644 (file)
@@ -75,7 +75,6 @@ static struct pps_model models[] = {
        },
 };
 
-
 SR_PRIV struct sr_dev_driver atten_pps3203_driver_info;
 
 static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
index e7d9d810c1c6dbfc2e5bf410192ce898f01d135c..297fe831036d86acf8fa82dd2e13e59a5aef3925 100644 (file)
@@ -164,4 +164,3 @@ SR_PRIV int atten_pps3xxx_receive_data(int fd, int revents, void *cb_data)
 
        return TRUE;
 }
-
index 1e4998028294bd1532920f84c25a72ec58ea6fd1..e58598f1eee038630ef8d313a9d2b028eb85b796 100644 (file)
@@ -21,6 +21,7 @@
 #include "protocol.h"
 
 #define SERIALCOMM "9600/8n1"
+
 /* 23ms is the longest interval between tokens. */
 #define MAX_SCAN_TIME 25 * 1000
 
@@ -66,8 +67,8 @@ static const char *data_sources[] = {
        "Live",
        "Memory",
 };
-SR_PRIV struct sr_dev_driver cem_dt_885x_driver_info;
 
+SR_PRIV struct sr_dev_driver cem_dt_885x_driver_info;
 
 static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
 {
index dc005f6372d396b0d1a89c16dc0ef35a49da483a..bbb1a03a0b1a935af36bc59c011d93341f702899 100644 (file)
@@ -404,7 +404,6 @@ SR_PRIV int cem_dt_885x_receive_data(int fd, int revents, void *cb_data)
        return TRUE;
 }
 
-
 static int wait_for_token(const struct sr_dev_inst *sdi, int8_t *tokens, int timeout)
 {
        struct dev_context *devc;
index 0704cde20c569735f771f1953d3bf5418be218cc..f3c8bb4a2867f94ec02f3fc905c747d547be1be9 100644 (file)
@@ -183,7 +183,6 @@ SR_PRIV struct sr_dev_driver demo_driver_info;
 
 static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data);
 
-
 static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
 {
        return std_init(sr_ctx, di, LOG_PREFIX);
index f86b7d7b17108a7241388188f35ee3b0e4699f54..df0f2461c251cffbecd8c8dd154ccb87968cad86 100644 (file)
@@ -386,7 +386,6 @@ static void handle_qm_19x_data(const struct sr_dev_inst *sdi, char **tokens)
                /* Don't have valid metadata yet. */
                return;
 
-
        if (devc->mq == SR_MQ_RESISTANCE && isnan(fvalue))
                fvalue = INFINITY;
        else if (devc->mq == SR_MQ_CONTINUITY) {
index bf0b3691fc5f5831be233ad0f9dffdc783e0ccdc..69b26794156f4988fd279bc8adc81173ebefa4b0 100644 (file)
@@ -58,7 +58,6 @@ static const uint32_t devopts_bd[] = {
        SR_CONF_POWER_OFF | SR_CONF_GET | SR_CONF_SET,
 };
 
-
 /* TODO:
  * - For the 29S SR_CONF_ENERGYMETER, too.
  * - SR_CONF_PATTERN_MODE for some 2x devices
index 11ca021e6786acbfa2fbbebaee1281559cf2dc9d..ad7ae5677a4f045ecbaf0e1aa5f0a5dbdda51e70 100644 (file)
@@ -602,7 +602,6 @@ static void decode_rs_2x_TR2(uint8_t rs, struct dev_context *devc)
                devc->scale *= -1.0;
 }
 
-
 /**
  * Decode special chars (Metrahit 2x).
  *
@@ -1497,7 +1496,6 @@ SR_PRIV const char *gmc_model_str(enum model mcode)
        }
 }
 
-
 /** @copydoc sr_dev_driver.config_set
  */
 SR_PRIV int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
index 37d681cb31274c523bc296570e904a75b6b3230c..8033e960cd2ea1562f094c44772d53d97cf77e1e 100644 (file)
@@ -62,7 +62,6 @@ static const char *data_sources[] = {
 
 SR_PRIV struct sr_dev_driver kecheng_kc_330b_driver_info;
 
-
 static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
 {
        return std_init(sr_ctx, di, LOG_PREFIX);
@@ -236,7 +235,6 @@ static int cleanup(const struct sr_dev_driver *di)
                /* Can get called on an unused driver, doesn't matter. */
                return SR_OK;
 
-
        ret = std_dev_clear(di, NULL);
        g_free(drvc);
 
index fc65b228e7b37bd834a977779b65629378e6cf6a..3213a684a95ffbc275d601467111398b32f53700 100644 (file)
@@ -152,7 +152,6 @@ static int cleanup(const struct sr_dev_driver *di)
                /* Can get called on an unused driver, doesn't matter. */
                return SR_OK;
 
-
        ret = std_dev_clear(di, NULL);
        g_free(drvc);
 
@@ -390,7 +389,6 @@ static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
        libusb_control_transfer(usb->devhdl, LIBUSB_REQUEST_TYPE_VENDOR,
                        0x02, 0x0001, 0x00, NULL, 0, 50);
 
-
        /* Flush input. The F321 requires this. */
        while (libusb_bulk_transfer(usb->devhdl, LASCAR_EP_IN, resp,
                        256, &ret, 5) == 0 && ret > 0)
index eac2b18a001218c2135493d73e351942a0efdd55..484ab0fc622f22288d582d6b28e21d7beec8d5ee 100644 (file)
@@ -54,7 +54,6 @@ static const struct elusb_profile profiles[] = {
        { 0, NULL, 0 }
 };
 
-
 static libusb_device_handle *lascar_open(struct libusb_device *dev)
 {
        libusb_device_handle *dev_hdl;
index d040fe6e754d6cad5adc2b731b764b94549b3204..c23f84a1ca49da8e1f7e8e06cd0079f4f8dbb754 100644 (file)
@@ -441,7 +441,6 @@ static GSList *do_scan(lps_modelid modelid, struct sr_dev_driver *drv, GSList *o
                        goto exit_err;
                }
 
-
                g_strstrip(buf);
                verstr = buf + 4;
        }
index 78d822f0ba21fd8724511d860efebb05d7ce1262..b97ce3b66e26403ccd3e4b6aaaef88517eda5b81 100644 (file)
@@ -131,7 +131,6 @@ static void process_line(struct sr_dev_inst *sdi)
        devc->buflen = 0;
 }
 
-
 SR_PRIV int motech_lps_30x_receive_data(int fd, int revents, void *cb_data)
 {
        struct sr_dev_inst *sdi;
index 6fe8e39d8b37ae90c7d23c941fe16e0f4ff32f86..9df1546f4bfa9aa1b3377c7020b3cc623fe004c1 100644 (file)
@@ -321,7 +321,6 @@ SR_PRIV struct sr_dev_driver norma_dmm_driver_info = {
        .priv = NULL,
 };
 
-
 SR_PRIV struct sr_dev_driver siemens_b102x_driver_info = {
        .name = "siemens-b102x",
        .longname = "Siemens B102x DMMs",
index c0f101dc79d68b969384c4fbf5ed9455633e782a..d95ddae2ed8d2394443e07e713662b881e0e1ef4 100644 (file)
@@ -101,7 +101,6 @@ struct dev_context {
        unsigned char *raw_sample_buf;
 };
 
-
 SR_PRIV extern const char *ols_channel_names[NUM_CHANNELS + 1];
 
 SR_PRIV int send_shortcommand(struct sr_serial_dev_inst *serial,
index b23ccf707f6258d59765e3deae2ef36290c316f0..e877234a21357470aefc45900223c7a090d7c57f 100644 (file)
@@ -229,7 +229,6 @@ static int cleanup(const struct sr_dev_driver *di)
        return dev_clear(di);
 }
 
-
 static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
                const struct sr_channel_group *cg)
 {
@@ -469,7 +468,6 @@ static int dev_close(struct sr_dev_inst *sdi)
        return ret;
 }
 
-
 static int set_trigger(const struct sr_dev_inst *sdi, int stage)
 {
        struct dev_context *devc;
@@ -706,8 +704,6 @@ static int dev_acquisition_start(const struct sr_dev_inst *sdi,
        return SR_OK;
 }
 
-
-
 static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
 {
        struct dev_context *devc;
index f3bd15b0272d9c290d89f4c3af9d0438c508cd84..5b0bcfb9e4ae5c2061662ffa25ac278359a0e000 100644 (file)
@@ -384,7 +384,6 @@ SR_PRIV int p_ols_set_samplerate(const struct sr_dev_inst *sdi,
        return SR_OK;
 }
 
-
 SR_PRIV int p_ols_receive_data(int fd, int revents, void *cb_data)
 {
        struct dev_context *devc;
index 84171c355cd56e02921badf2f4db733f74b06b70..869815a71f9f89d2bcd3a19b1bea35f755497a86 100644 (file)
@@ -36,7 +36,6 @@
 
 #define FTDI_BUF_SIZE          (16 * 1024)
 
-
 #define NUM_CHANNELS           32
 #define NUM_TRIGGER_STAGES     4
 #define CLOCK_RATE             SR_MHZ(100)
@@ -118,7 +117,6 @@ struct dev_context {
        unsigned char *raw_sample_buf;
 };
 
-
 SR_PRIV extern const char *p_ols_channel_names[NUM_CHANNELS + 1];
 SR_PRIV int write_shortcommand(struct dev_context *devc, uint8_t command);
 SR_PRIV int write_longcommand(struct dev_context *devc, uint8_t command, uint8_t *data);
index 5735234e47c19b658d79408cc1c342991bbc1d8d..e7d3119a6c379d0087a5d82850098b083aaf62bc 100644 (file)
@@ -302,7 +302,6 @@ struct scpi_command philips_pm2800_cmd[] = {
        { SCPI_CMD_GET_OVER_CURRENT_PROTECTION_ACTIVE, ":SOUR:CURR:PROT:TRIP?" },
 };
 
-
 SR_PRIV const struct scpi_pps pps_profiles[] = {
        /* HP 6632B */
        { "HP", "6632B", 0,
@@ -350,5 +349,5 @@ SR_PRIV const struct scpi_pps pps_profiles[] = {
                philips_pm2800_probe_channels,
        },
 };
-SR_PRIV unsigned int num_pps_profiles = ARRAY_SIZE(pps_profiles);
 
+SR_PRIV unsigned int num_pps_profiles = ARRAY_SIZE(pps_profiles);
index 1505e5bc9b4ebbbe2dbceabf036b789dba5f3068..15717c02cfa7bc76891af20321c19ef7c0544a48 100644 (file)
@@ -51,7 +51,6 @@ SR_PRIV int testo_set_serial_params(struct sr_usb_dev_inst *usb)
        return SR_OK;
 }
 
-
 /* Due to the modular nature of the Testo hardware, you can't assume
  * which measurements the device will supply. Fetch a single result
  * set synchronously to see which measurements it has. */
@@ -289,4 +288,3 @@ SR_PRIV void testo_receive_packet(const struct sr_dev_inst *sdi)
                g_slist_free(analog.channels);
        }
 }
-
index f61fe2d4b201e4c9faf201b0cd80da15004b634a..a61a9dce86be5526065bd3b8740819d0abd8c662 100644 (file)
@@ -80,4 +80,5 @@ SR_PRIV int testo_request_packet(const struct sr_dev_inst *sdi);
 SR_PRIV gboolean testo_check_packet_prefix(unsigned char *buf, int len);
 SR_PRIV uint16_t crc16_mcrf4xx(uint16_t crc, uint8_t *data, size_t len);
 SR_PRIV void testo_receive_packet(const struct sr_dev_inst *sdi);
+
 #endif
index a8c380d9d30cd6de8aadc46f89adcdda17e984f8..3b33df9a6035dc14eac311b6f0867c7a9d9dcc20 100644 (file)
@@ -41,7 +41,6 @@ static const char *data_sources[] = {
 
 SR_PRIV struct sr_dev_driver uni_t_ut32x_driver_info;
 
-
 static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
 {
        return std_init(sr_ctx, di, LOG_PREFIX);
@@ -182,7 +181,6 @@ static int cleanup(const struct sr_dev_driver *di)
                /* Can get called on an unused driver, doesn't matter. */
                return SR_OK;
 
-
        ret = std_dev_clear(di, NULL);
        g_free(drvc);
 
index 590d3fd5159f99ee01b541859e65ccfd481f7a80..3bbdd99bd06c4c9571a7d978eafb5fd7ef6e7eae 100644 (file)
@@ -238,4 +238,3 @@ SR_PRIV int uni_t_ut32x_handle_events(int fd, int revents, void *cb_data)
 
        return TRUE;
 }
-
index 85874b12c53f213644e1293e81b44cb84b95f590..9aa0019e951e2a580b200a07f68e807b2ccf4659 100644 (file)
@@ -37,6 +37,7 @@ static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data);
 static const uint32_t drvopts[] = {
        SR_CONF_MULTIMETER,
 };
+
 static const uint32_t scanopts[] = {
        SR_CONF_CONN,
 };
@@ -195,7 +196,6 @@ static int cleanup(const struct sr_dev_driver *di)
                /* Can get called on an unused driver, doesn't matter. */
                return SR_OK;
 
-
        ret = std_dev_clear(di, NULL);
        g_free(drvc);
 
index d38620f8665dfe17664855d1cb31bf01191fbf9d..aa62f3215733853af8632401957175dfa22d2070 100644 (file)
@@ -41,7 +41,6 @@
 #define DLM_DIVISION_FOR_WORD_FORMAT (3200)
 #define DLM_DIVISION_FOR_BYTE_FORMAT (12.5)
 
-
 enum trigger_slopes {
        SLOPE_POSITIVE,
        SLOPE_NEGATIVE
index a4fc2cd7517de4aeec16522ec1cc778b66cbba51..afe4efa317b865f9251d22214e61b2468dd48c17 100644 (file)
@@ -253,7 +253,6 @@ int dlm_digital_pod_state_set(struct sr_scpi_dev_inst *scpi, int pod,
                return sr_scpi_send(scpi, ":LOGIC:MODE OFF");
 }
 
-
 int dlm_response_headers_set(struct sr_scpi_dev_inst *scpi,
                const gboolean value)
 {
@@ -268,7 +267,6 @@ int dlm_acquisition_stop(struct sr_scpi_dev_inst *scpi)
        return sr_scpi_send(scpi, ":STOP");
 }
 
-
 int dlm_acq_length_get(struct sr_scpi_dev_inst *scpi,
                uint32_t *response)
 {
index 9ace7f5eb3d1b4792c48bc2a5a75f9f876386043..b078f5a6bf4febac814d9b0375243ad3f2271869 100644 (file)
@@ -590,5 +590,4 @@ SR_API void sr_input_free(const struct sr_input *in)
        g_free((gpointer)in);
 }
 
-
 /** @} */
index e69a80715676152df8d37a4a8acc644978d503d4..ad0ba7f03d3c839d1b3ee40a862c07fc4ce6826b 100644 (file)
@@ -87,7 +87,6 @@ struct vcd_channel {
        gchar *identifier;
 };
 
-
 /*
  * Reads a single VCD section from input file and parses it to name/contents.
  * e.g. $timescale 1ps $end  => "timescale" "1ps"
index 0c23010eb6f7c5f1dab218356c54c1cf80a4a212..88ddd7a814dd07b5f4ab18477871ff1b82fbe531 100644 (file)
@@ -73,7 +73,6 @@ static int parse_wav_header(GString *buf, struct context *inc)
                return SR_ERR_DATA;
        }
 
-
        if (fmt_code == WAVE_FORMAT_PCM) {
        } else if (fmt_code == WAVE_FORMAT_IEEE_FLOAT) {
                if (unitsize != 4) {
@@ -370,4 +369,3 @@ SR_PRIV struct sr_input_module input_wav = {
        .receive = receive,
        .end = end,
 };
-
index c6fddc11c87a882e18f562fbf97058fbe99cc69c..d7290c76dafcec6a191be7fe75a37010a179f37c 100644 (file)
@@ -305,7 +305,6 @@ static int send_config_update_key(struct sr_dev_inst *sdi, uint32_t key,
        sr_config_free(cfg);
 
        return ret;
-
 }
 
 /*
@@ -467,7 +466,7 @@ static int parse_mq(const uint8_t *pkt, int is_secondary, int is_parallel)
 
        switch (is_secondary << 8 | buf[0]) {
        case 0x001:
-               return is_parallel ?
+               return is_parallel ?
                        SR_MQ_PARALLEL_INDUCTANCE : SR_MQ_SERIES_INDUCTANCE;
        case 0x002:
                return is_parallel ?
@@ -607,7 +606,6 @@ static unsigned int parse_model(const uint8_t *pkt)
                return MODEL_PAR;
        else
                return MODEL_SER;
-
 }
 
 static gboolean packet_valid(const uint8_t *pkt)
index c6b4290fa6b12c68f60e7ee2f7be087d3919c531..d2ad3acae449d45461e83bf680b2e873b365d6e2 100644 (file)
@@ -258,5 +258,3 @@ SR_PRIV struct sr_output_module output_ascii = {
        .receive = receive,
        .cleanup = cleanup,
 };
-
-
index 631fefdaa3535e5ca7283138c1f22486bf54e203..053f042495bdd45adbbb44f14e4f54c26fbf6c31 100644 (file)
@@ -43,7 +43,6 @@ static const char *gnuplot_header2 = "\
 # -----------------------------------------------------------------------------\n\
 # 0\t\tSample counter (for internal gnuplot purposes)\n";
 
-
 static int init(struct sr_output *o, GHashTable *options)
 {
        struct context *ctx;
index 6b24fdf578aceb10083db93204e32d89929684a5..bad607513f653f385352faf954f7cb8903951521 100644 (file)
@@ -258,4 +258,3 @@ SR_PRIV struct sr_output_module output_hex = {
        .receive = receive,
        .cleanup = cleanup,
 };
-
index 356a8ab4047269ea73b128b62287deb2cce0cd1b..84755a3d56c42429c6dc9a97fe081f50e7b3d750 100644 (file)
@@ -318,4 +318,3 @@ SR_PRIV struct sr_output_module output_srzip = {
        .receive = receive,
        .cleanup = cleanup,
 };
-
index 45854caac1f684f445d2bee87e032e9cff831c79..e9c7d6fd1a70bee549121c7ac1872619532e377d 100644 (file)
@@ -357,4 +357,3 @@ SR_PRIV struct sr_output_module output_wav = {
        .receive = receive,
        .cleanup = cleanup,
 };
-
index 535ce54b3ddfab369a9476438dedab488d35c879..c143e599936654802f34f43793764ed27428b354 100644 (file)
@@ -92,7 +92,6 @@ enum {
 #define EOM                0x01
 #define TERM_CHAR_ENABLED  0x02
 
-
 static GSList *scpi_usbtmc_libusb_scan(struct drv_context *drvc)
 {
        struct libusb_device **devlist;
index fd24c26c1a4fa302110c68a5bece69492d304715..ce72a9b0241b71d4795babb50a2dfece6944012d 100644 (file)
@@ -447,6 +447,7 @@ static int verify_trigger(struct sr_trigger *trigger)
 
        return SR_OK;
 }
+
 /**
  * Start a session.
  *
index abe002d3a60cc3014140e31ddfee403ff21151cf..91d4d7775f9f2223e3f4ca58f3259d8fcfa2cbcd 100644 (file)
@@ -49,7 +49,6 @@
 extern SR_PRIV struct sr_dev_driver session_driver;
 static int session_driver_initialized = 0;
 
-
 /** @private */
 SR_PRIV int sr_sessionfile_check(const char *filename)
 {
index 107e6219c58071597debddcc666c760577c622e6..27c71b611b4a82546c7c0cf35eda99a30fe40dab 100644 (file)
@@ -219,4 +219,3 @@ SR_PRIV int soft_trigger_logic_check(struct soft_trigger_logic *stl,
 
        return offset;
 }
-