]> sigrok.org Git - libsigrok.git/commitdiff
Random whitespace/cosmetic/typo fixes.
authorUwe Hermann <redacted>
Sun, 27 May 2018 15:07:26 +0000 (17:07 +0200)
committerUwe Hermann <redacted>
Sun, 14 Oct 2018 16:21:56 +0000 (18:21 +0200)
src/hardware/arachnid-labs-re-load-pro/api.c
src/hardware/beaglelogic/api.c
src/hardware/beaglelogic/beaglelogic.h
src/hardware/beaglelogic/beaglelogic_native.c
src/hardware/beaglelogic/protocol.c
src/hardware/beaglelogic/protocol.h
src/hardware/maynuo-m97/api.c
src/hardware/motech-lps-30x/api.c
src/session_file.c
src/usb.c

index cfb413d5a2581ca9a601565e12d3f10f670eb565..d6f95723d83ec9b7603cf4234f34ff1d144c0e8d 100644 (file)
@@ -347,7 +347,6 @@ static int dev_acquisition_stop(struct sr_dev_inst *sdi)
        g_mutex_clear(&devc->acquisition_mutex);
 
        return ret;
-
 }
 
 static struct sr_dev_driver arachnid_labs_re_load_pro_driver_info = {
index 0be82c13ca9d2c8302a7756a125f876260437b41..95f53159a85fa073209ad6da1ca5f4eef83ca874 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the libsigrok project.
  *
- * Copyright (C) 2014-17 Kumar Abhishek <abhishek@theembeddedkitchen.net>
+ * Copyright (C) 2014-2017 Kumar Abhishek <abhishek@theembeddedkitchen.net>
  *
  * 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
index 8d71a10b065c00ecb47b3b745b954743d08a7fbe..2150032cfa455b1ea5517798962b400e4fa5c703 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the libsigrok project.
  *
- * Copyright (C) 2014-17 Kumar Abhishek <abhishek@theembeddedkitchen.net>
+ * Copyright (C) 2014-2017 Kumar Abhishek <abhishek@theembeddedkitchen.net>
  *
  * 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
index f94ffcc035ba508ab1d2a630e9b68ab5f94741e5..42d51edf32d858c78bc3c64b8cf25a00818436d4 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the libsigrok project.
  *
- * Copyright (C) 2014-17 Kumar Abhishek <abhishek@theembeddedkitchen.net>
+ * Copyright (C) 2014-2017 Kumar Abhishek <abhishek@theembeddedkitchen.net>
  *
  * 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
index 0fc6f123942c3dce6d6f4bb17571a9745a652c94..053daad9176e7b4390faf522a285bec4c5f949aa 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the libsigrok project.
  *
- * Copyright (C) 2014-17 Kumar Abhishek <abhishek@theembeddedkitchen.net>
+ * Copyright (C) 2014-2017 Kumar Abhishek <abhishek@theembeddedkitchen.net>
  *
  * 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
index 207fbe274d21c1296dc4c6a5f53a5f9f67905b33..a2af44f2543be96e22c54f7b2810f6ff6410ed9f 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the libsigrok project.
  *
- * Copyright (C) 2014-17 Kumar Abhishek <abhishek@theembeddedkitchen.net>
+ * Copyright (C) 2014-2017 Kumar Abhishek <abhishek@theembeddedkitchen.net>
  *
  * 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
index 0e593938eb4c15f74f3957a60f7a89912dffbbc3..54444d623c6d1484bfbe31f3da3d99d512a91c33 100644 (file)
@@ -140,7 +140,7 @@ static struct sr_dev_inst *probe_device(struct sr_modbus_dev_inst *modbus)
        sdi->status = SR_ST_INACTIVE;
        sdi->vendor = g_strdup("Maynuo");
        sdi->model = g_strdup(model->name);
-       sdi->version = g_strdup_printf("v%d.%d", version/10, version%10);
+       sdi->version = g_strdup_printf("v%d.%d", version / 10, version % 10);
        sdi->conn = modbus;
        sdi->driver = &maynuo_m97_driver_info;
        sdi->inst_type = SR_INST_MODBUS;
index af3ee4f0aecbe504943b9aafb215c6ddc3395769..46407cc5f01cd95b498bad0eb744fd9d4a385cd9 100644 (file)
@@ -441,7 +441,7 @@ static GSList *do_scan(lps_modelid modelid, struct sr_dev_driver *drv, GSList *o
                devc->channel_status[cnt].info = g_slist_append(NULL, ch);
 
                cg = g_malloc(sizeof(struct sr_channel_group));
-               snprintf(channel, sizeof(channel), "CG%d", cnt+1);
+               snprintf(channel, sizeof(channel), "CG%d", cnt + 1);
                cg->name = g_strdup(channel);
                cg->priv = NULL;
                cg->channels = g_slist_append(NULL, ch);
index 2515ca5e7ebc9ab1e5225a7f4c4ec88a94aa9dc5..7a2010e485ef7eca90f992b87076310783523a47 100644 (file)
@@ -167,7 +167,7 @@ SR_PRIV int sr_sessionfile_check(const char *filename)
 
        return SR_OK;
 }
+
 /** @private */
 SR_PRIV struct sr_dev_inst *sr_session_prepare_sdi(const char *filename, struct sr_session **session)
 {
index b453c04c8218d93a9ca22eff23f40e4f0c6e79c6..8a8f0ca56dfff018bd6d6828cd267c0c1e5f4a98 100644 (file)
--- a/src/usb.c
+++ b/src/usb.c
@@ -509,7 +509,7 @@ SR_PRIV int usb_get_port_path(libusb_device *dev, char *path, int path_len)
 }
 
 /**
- * Check the USB configuration to determine if this device has a given 
+ * Check the USB configuration to determine if this device has a given
  * manufacturer and product string.
  *
  * @return TRUE if the device's configuration profile strings