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

index 9535b053b4b304a5c498754142464ab1336389fc..bf473da6c63fcea781a8b638a557660e74c3f65f 100644 (file)
@@ -317,7 +317,7 @@ SR_PRIV struct sr_config *sr_config_make(int key, const void *value)
  *         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_get(struct sr_dev_driver *driver, int key,
+SR_API int sr_config_get(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 bed626989a36194dd36bfe0c3cbc3e6a2ffda56f..cf99d1bbc583f825a4b444d3813e879c958afc81 100644 (file)
--- a/proto.h
+++ b/proto.h
@@ -68,7 +68,7 @@ SR_API struct sr_dev_driver **sr_driver_list(void);
 SR_API int sr_driver_init(struct sr_context *ctx,
                struct sr_dev_driver *driver);
 SR_API GSList *sr_driver_scan(struct sr_dev_driver *driver, GSList *options);
-SR_API int sr_config_get(struct sr_dev_driver *driver, int key,
+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);