]> sigrok.org Git - libsigrok.git/commitdiff
Whitespace and consistency fixes.
authorUwe Hermann <redacted>
Thu, 13 Jan 2011 22:50:34 +0000 (23:50 +0100)
committerUwe Hermann <redacted>
Thu, 13 Jan 2011 22:52:25 +0000 (23:52 +0100)
Also, drop a <poll.h> #include. It's unused anyway, and breaks the build
on MinGW/Windows as there is no poll.h there.

datastore.c
hardware/demo/demo.c
hardware/openbench-logic-sniffer/ols.c
hardware/saleae-logic/saleae-logic.c
hardware/zeroplus-logic-cube/zeroplus.c
hwplugin.c
session.c

index 75cd243b6ed964c46f92ea5d984c555b8d287145..9527ff00f811eff2dcc4175e874252aa10db2690 100644 (file)
@@ -65,7 +65,7 @@ void datastore_put(struct datastore *ds, void *data, unsigned int length,
        int capacity, size, num_chunks, chunk_bytes_free, chunk_offset;
        gpointer chunk;
 
-       /* QUICK HACK */
+       /* Avoid compiler warnings. */
        in_unitsize = in_unitsize;
        probelist = probelist;
 
index dcf5e7c28e4ec1947b50039a45949fa563a9cc6f..cb6aa95cba0cb7dfe3bfd4674c52e110d4c98d6c 100644 (file)
@@ -97,7 +97,7 @@ static void hw_stop_acquisition(int device_index, gpointer session_device_id);
 
 static int hw_init(char *deviceinfo)
 {
-       /* Avoid compiler warning. */
+       /* Avoid compiler warnings. */
        deviceinfo = deviceinfo;
 
        struct sigrok_device_instance *sdi;
@@ -114,7 +114,7 @@ static int hw_init(char *deviceinfo)
 
 static int hw_opendev(int device_index)
 {
-       /* Avoid compiler warning. */
+       /* Avoid compiler warnings. */
        device_index = device_index;
 
        /* Nothing needed so far. */
@@ -123,7 +123,7 @@ static int hw_opendev(int device_index)
 
 static void hw_closedev(int device_index)
 {
-       /* Avoid compiler warning. */
+       /* Avoid compiler warnings. */
        device_index = device_index;
 
        /* Nothing needed so far. */
@@ -165,7 +165,7 @@ static void *hw_get_device_info(int device_index, int device_info_id)
 
 static int hw_get_status(int device_index)
 {
-       /* Avoid compiler warning. */
+       /* Avoid compiler warnings. */
        device_index = device_index;
 
        return 0; /* FIXME */
@@ -181,7 +181,7 @@ static int hw_set_configuration(int device_index, int capability, void *value)
        int ret;
        uint64_t *tmp_u64;
 
-       /* Avoid compiler warning. */
+       /* Avoid compiler warnings. */
        device_index = device_index;
 
        if (capability == HWCAP_SAMPLERATE) {
@@ -337,7 +337,7 @@ static void hw_stop_acquisition(int device_index, gpointer session_device_id)
 {
        struct datafeed_packet packet;
 
-       /* QUICK HACK */
+       /* Avoid compiler warnings. */
        device_index = device_index;
 
        /* Send last packet. */
index 403c2b58aa0ca46c6cb63e0fd4b18b6ced0655ba..3d69dc97db30d51a9fe4b2015b6dedc98226840b 100644 (file)
@@ -777,7 +777,7 @@ static void hw_stop_acquisition(int device_index, gpointer session_device_id)
 {
        struct datafeed_packet packet;
 
-       /* QUICK HACK */
+       /* Avoid compiler warnings. */
        device_index = device_index;
 
        packet.type = DF_END;
index 92a43f93acff00c2cbda9f5e303242326d702bb0..ba50ee94ea3ea6af15b47360d9cf2588eaf58ec7 100644 (file)
@@ -297,7 +297,7 @@ static int hw_init(char *deviceinfo)
        libusb_device **devlist;
        int err, devcnt, i;
 
-       /* QUICK HACK */
+       /* Avoid compiler warnings. */
        deviceinfo = deviceinfo;
 
        if (libusb_init(&usb_context) != 0) {
@@ -525,7 +525,7 @@ static int receive_data(int fd, int revents, void *user_data)
 {
        struct timeval tv;
 
-       /* QUICK HACK */
+       /* Avoid compiler warnings. */
        fd = fd;
        revents = revents;
        user_data = user_data;
@@ -728,7 +728,7 @@ static void hw_stop_acquisition(int device_index, gpointer session_device_id)
 {
        struct datafeed_packet packet;
 
-       /* QUICK HACK */
+       /* Avoid compiler warnings. */
        device_index = device_index;
 
        packet.type = DF_END;
index e034dfcc24f588f0b4bcd0441287a93c2b22928a..1c5f2cef0488d128ed0a2a1e30838f14a9aedebe 100644 (file)
@@ -280,7 +280,7 @@ static int hw_init(char *deviceinfo)
        libusb_device **devlist;
        int err, devcnt, i;
 
-       /* QUICK HACK */
+       /* Avoid compiler warnings. */
        deviceinfo = deviceinfo;
 
        if (libusb_init(&usb_context) != 0) {
index c248476bd1d4321e054641736175c39a3edaf4ca..bbecaef12270daa4553f84c0477facb5cb5758cb 100644 (file)
@@ -167,7 +167,7 @@ struct usb_device_instance *usb_device_instance_new(uint8_t bus,
 
 void usb_device_instance_free(struct usb_device_instance *usb)
 {
-       /* QUICK HACK */
+       /* Avoid compiler warnings. */
        usb = usb;
 
        /* Nothing to do for this device instance type. */
index 210b73bad8c50e592ec3d65596d4b475f0f26eaf..e7d3c7008cf87fae7e2e99208a4dee8abee16e68 100644 (file)
--- a/session.c
+++ b/session.c
@@ -31,12 +31,12 @@ struct session *session_load(const char *filename)
 {
        struct session *session;
 
+       /* Avoid compiler warnings. */
+       filename = filename;
+
        /* TODO: Implement. */
        session = NULL;
 
-       /* QUICK HACK */
-       filename = filename;
-
        return session;
 }