]> sigrok.org Git - libsigrok.git/commitdiff
Use ALL_ZERO in a few more places.
authorUwe Hermann <redacted>
Thu, 7 Jan 2016 22:46:36 +0000 (23:46 +0100)
committerUwe Hermann <redacted>
Thu, 7 Jan 2016 22:50:17 +0000 (23:50 +0100)
src/hardware/fx2lafw/api.c
src/hardware/hantek-dso/api.c
src/hardware/norma-dmm/protocol.c
src/hardware/zeroplus-logic-cube/analyzer.c

index c3f3ed4b5e89406e3f6d207a9850fb9ce4441a81..4a80b57494d5adb2ba72d7505b56ddd3ac6b822a 100644 (file)
@@ -113,7 +113,7 @@ static const struct fx2lafw_profile supported_fx2[] = {
                "fx2lafw-sigrok-fx2-16ch.fw",
                DEV_CAPS_16BIT, NULL, NULL },
 
-       { 0, 0, 0, 0, 0, 0, 0, 0, 0 }
+       ALL_ZERO
 };
 
 static const uint32_t drvopts[] = {
index 1c9289e5712efbf40a7aaf5127fb0443a4f65d71..d96afdb2f68318585fc65e40fc7351d98b777f42 100644 (file)
@@ -105,7 +105,7 @@ static const struct dso_profile dev_profiles[] = {
                "Hantek", "DSO-5200A",
                buffersizes_512k,
                "hantek-dso-5200A.fw" },
-       { 0, 0, 0, 0, 0, 0, 0, 0 },
+       ALL_ZERO
 };
 
 static const uint64_t timebases[][2] = {
index a077cf983b05ef392a642f322ebe9991fab0852e..4dc717c9d0aa9967d992e306a385c0d7b4d813e6 100644 (file)
@@ -30,7 +30,7 @@
 SR_PRIV const struct nmadmm_req nmadmm_requests[] = {
        { NMADMM_REQ_IDN, "IDN?" },
        { NMADMM_REQ_IDN, "STATUS?" },
-       { 0, NULL },
+       ALL_ZERO
 };
 
 static int nma_send_req(const struct sr_dev_inst *sdi, int req, char *params)
index 94cf0689d2b1035c75246e8366168ec1b7812c44..aa5643ab7e80626dbc43340b5e2aa02e259899d4 100644 (file)
@@ -310,7 +310,7 @@ static int __analyzer_set_freq(libusb_device_handle *devh, int freq, int scale)
                {   1, FREQ_SCALE_KHZ, 64,  5,  5 },
                { 500, FREQ_SCALE_HZ,  64, 10,  5 },
                { 100, FREQ_SCALE_HZ,  68,  5,  8 },
-               {   0, 0,              0,   0,  0 }
+               ALL_ZERO
        };
 
        int i;