]> sigrok.org Git - libsigrok.git/commitdiff
Use the ALLZERO macro in more places.
authorUwe Hermann <redacted>
Thu, 26 Nov 2015 23:15:15 +0000 (00:15 +0100)
committerUwe Hermann <redacted>
Thu, 26 Nov 2015 23:55:09 +0000 (00:55 +0100)
src/hardware/agilent-dmm/sched.c
src/hardware/chronovu-la/protocol.c
src/hardware/korad-kaxxxxp/api.c
src/hardware/lascar-el-usb/protocol.c
src/hardware/manson-hcs-3xxx/api.c
src/hardware/zeroplus-logic-cube/api.c
src/hwdriver.c

index c1ca8f2ebe5248c93d0cd9916f252fcad6af79c2..e5c0cc580cc5a8efa2cb6ebc762a17e2496a2ed0 100644 (file)
@@ -515,7 +515,7 @@ SR_PRIV const struct agdmm_job agdmm_jobs_u12xx[] = {
        { 143, send_stat },
        { 1000, send_conf },
        { 143, send_fetc },
-       { 0, NULL }
+       ALL_ZERO
 };
 
 SR_PRIV const struct agdmm_recv agdmm_recvs_u123x[] = {
@@ -525,7 +525,7 @@ SR_PRIV const struct agdmm_recv agdmm_recvs_u123x[] = {
        { "^\"(V|MV|A|UA|FREQ),(\\d),(AC|DC)\"$", recv_conf_u123x },
        { "^\"(RES|CAP),(\\d)\"$", recv_conf_u123x},
        { "^\"(DIOD)\"$", recv_conf },
-       { NULL, NULL }
+       ALL_ZERO
 };
 
 SR_PRIV const struct agdmm_recv agdmm_recvs_u124x[] = {
@@ -537,7 +537,7 @@ SR_PRIV const struct agdmm_recv agdmm_recvs_u124x[] = {
        { "^\"(CPER:[40]-20mA) ([-+][0-9\\.E\\-+]+),([-+][0-9\\.E\\-+]+)\"$", recv_conf_u124x_5x },
        { "^\"(T[0-9]:[A-Z]+) ([A-Z]+)\"$", recv_conf_u124x_5x },
        { "^\"(DIOD)\"$", recv_conf },
-       { NULL, NULL }
+       ALL_ZERO
 };
 
 SR_PRIV const struct agdmm_recv agdmm_recvs_u125x[] = {
@@ -549,5 +549,5 @@ SR_PRIV const struct agdmm_recv agdmm_recvs_u125x[] = {
        { "^\"(CPER:[40]-20mA) ([-+][0-9\\.E\\-+]+),([-+][0-9\\.E\\-+]+)\"$", recv_conf_u124x_5x },
        { "^\"(T[0-9]:[A-Z]+) ([A-Z]+)\"$", recv_conf_u124x_5x },
        { "^\"(DIOD)\"$", recv_conf },
-       { NULL, NULL }
+       ALL_ZERO
 };
index c3340d7c8fc8dbbd68a417ed630f7459fdc40fb4..a4689fa3b2140cd5a2a8e05fa29efe112fb300a1 100644 (file)
@@ -24,7 +24,7 @@
 SR_PRIV const struct cv_profile cv_profiles[] = {
        { CHRONOVU_LA8,  "LA8",  "ChronoVu LA8",  8,  SR_MHZ(100), 2, 0.8388608 },
        { CHRONOVU_LA16, "LA16", "ChronoVu LA16", 16, SR_MHZ(200), 4, 0.042 },
-       { 0, NULL, NULL, 0, 0, 0, 0.0 },
+       ALL_ZERO
 };
 
 /* LA8: channels are numbered 0-7. LA16: channels are numbered 0-15. */
index 38bbefcbceea0b10357231a1b4fd497977cce9f1..7eca205c78bdd22864e9f0ec643c47ca12ff62a1 100644 (file)
@@ -54,7 +54,7 @@ static const struct korad_kaxxxxp_model models[] = {
                "VELLEMANLABPS3005DV2.0", 1, {0, 31, 0.01}, {0, 5, 0.001}},
        {KORAD_KA3005D, "Korad", "KA3005P",
                "KORADKA3005PV2.0", 1, {0, 31, 0.01}, {0, 5, 0.001}},
-       {0, NULL, NULL, NULL, 0, {0, 0, 0}, {0, 0, 0}}
+       ALL_ZERO
 };
 
 SR_PRIV struct sr_dev_driver korad_kaxxxxp_driver_info;
index ac8b6ff9c4fe5f8e86806d71988366f2780b40b3..2584e8b09830015b5b22940712d4baeb06cb1c8e 100644 (file)
@@ -52,7 +52,7 @@ static const struct elusb_profile profiles[] = {
        { 19, "EL-USB-1-LCD", LOG_UNSUPPORTED },
        { 20, "EL-OEM-3", LOG_UNSUPPORTED },
        { 21, "EL-USB-1-LCD", LOG_UNSUPPORTED },
-       { 0, NULL, 0 }
+       ALL_ZERO
 };
 
 static libusb_device_handle *lascar_open(struct libusb_device *dev)
index e79e59dc160ff4d7fddec2b516f005f13391359d..917a7c0f3444a2020be281bd0453719ed3a9ef1b 100644 (file)
@@ -70,7 +70,7 @@ static const struct hcs_model models[] = {
        { MANSON_HCS_3600, "HCS-3600-USB", "3600", { 1, 16, 0.1 }, { 0, 60,   0.10 } },
        { MANSON_HCS_3602, "HCS-3602-USB", "3602", { 1, 32, 0.1 }, { 0, 30,   0.10 } },
        { MANSON_HCS_3604, "HCS-3604-USB", "3604", { 1, 60, 0.1 }, { 0, 15,   0.10 } },
-       { 0, NULL, NULL, { 0, 0, 0 }, { 0, 0, 0 }, },
+       ALL_ZERO
 };
 
 SR_PRIV struct sr_dev_driver manson_hcs_3xxx_driver_info;
index 6a76b3d8d758cd14806bcd6e17eafe4aafd35b63..657e5eb25ae87fa59c148c3ac5bd1dfcf5893a20 100644 (file)
@@ -51,7 +51,7 @@ static const struct zp_model zeroplus_models[] = {
        {0x0c12, 0x700e, "LAP-C(16032)",  16, 32,   100},
        {0x0c12, 0x7016, "LAP-C(162000)", 16, 2048, 200},
        {0x0c12, 0x7100, "AKIP-9101", 16, 256, 200},
-       { 0, 0, 0, 0, 0, 0 }
+       ALL_ZERO
 };
 
 static const uint32_t devopts[] = {
index b15fc28fc9d3f0083099f0e201e7a50c51e3ae83..a676d026a6aadcc60d904f31494746090d14fef5 100644 (file)
@@ -206,7 +206,7 @@ static struct sr_key_info sr_key_info_config[] = {
        {SR_CONF_TEST_MODE, SR_T_STRING, "test_mode",
                "Test mode", NULL},
 
-       {0, 0, NULL, NULL, NULL},
+       ALL_ZERO
 };
 
 /* Please use the same order as in enum sr_mq (libsigrok.h). */