]> sigrok.org Git - libsigrok.git/commitdiff
nexus-osciprime: suppress warnings
authorBert Vermeulen <redacted>
Tue, 25 Dec 2012 23:01:37 +0000 (00:01 +0100)
committerBert Vermeulen <redacted>
Tue, 25 Dec 2012 23:02:58 +0000 (00:02 +0100)
hardware/nexus-osciprime/api.c

index 100fb3ba158176c15df991ddf9942127660d832e..8b39ddaebf200be0a8a00ea0e49c178dd0042528 100644 (file)
@@ -241,14 +241,18 @@ static GSList *hw_dev_list(void)
 
 static int hw_dev_open(struct sr_dev_inst *sdi)
 {
+
        /* TODO */
+       (void)sdi;
 
        return SR_OK;
 }
 
 static int hw_dev_close(struct sr_dev_inst *sdi)
 {
+
        /* TODO */
+       (void)sdi;
 
        return SR_OK;
 }
@@ -265,8 +269,12 @@ static int hw_cleanup(void)
 static int hw_info_get(int info_id, const void **data,
                       const struct sr_dev_inst *sdi)
 {
-       switch (info_id) {
+
        /* TODO */
+       (void)data;
+       (void)sdi;
+
+       switch (info_id) {
        default:
                sr_err("Unknown info_id: %d.", info_id);
                return SR_ERR_ARG;
@@ -280,6 +288,9 @@ static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
 {
        int ret;
 
+       /* TODO */
+       (void)value;
+
        if (sdi->status != SR_ST_ACTIVE) {
                sr_err("Device inactive, can't set config options.");
                return SR_ERR;
@@ -287,7 +298,7 @@ static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
 
        ret = SR_OK;
        switch (hwcap) {
-       /* TODO */
+
        default:
                sr_err("Unknown hardware capability: %d.", hwcap);
                ret = SR_ERR_ARG;
@@ -300,6 +311,8 @@ static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
                                    void *cb_data)
 {
        /* TODO */
+       (void)sdi;
+       (void)cb_data;
 
        return SR_OK;
 }