]> sigrok.org Git - libsigrok.git/commitdiff
Made sr_config_list driver argument a const pointer
authorJoel Holdsworth <redacted>
Mon, 28 Jan 2013 20:26:37 +0000 (20:26 +0000)
committerJoel Holdsworth <redacted>
Mon, 28 Jan 2013 20:26:37 +0000 (20:26 +0000)
hwdriver.c
proto.h

index bf473da6c63fcea781a8b638a557660e74c3f65f..4c2ae142b622595b9e5914ab93b86c456409db27 100644 (file)
@@ -377,7 +377,7 @@ SR_API int sr_config_set(const struct sr_dev_inst *sdi, int key,
  *         but this is not to be flagged as an error by the caller; merely
  *         as an indication that it's not applicable.
  */
-SR_API int sr_config_list(struct sr_dev_driver *driver, int key,
+SR_API int sr_config_list(const struct sr_dev_driver *driver, int key,
                const void **data, const struct sr_dev_inst *sdi)
 {
        int ret;
diff --git a/proto.h b/proto.h
index cf99d1bbc583f825a4b444d3813e879c958afc81..c801f6cd19b09308081827acd43f933658d4749e 100644 (file)
--- a/proto.h
+++ b/proto.h
@@ -72,7 +72,7 @@ SR_API int sr_config_get(const struct sr_dev_driver *driver, int key,
                const void **data, const struct sr_dev_inst *sdi);
 SR_API int sr_config_set(const struct sr_dev_inst *sdi, int key,
                const void *value);
-SR_API int sr_config_list(struct sr_dev_driver *driver, int key,
+SR_API int sr_config_list(const struct sr_dev_driver *driver, int key,
                const void **data, const struct sr_dev_inst *sdi);
 SR_API const struct sr_config_info *sr_config_info_get(int key);
 SR_API const struct sr_config_info *sr_config_info_name_get(const char *optname);