Made sr_config_get driver argument a const pointer

This commit is contained in:
Joel Holdsworth 2013-01-28 20:25:56 +00:00
parent 7d4abe5a77
commit 9fd504b9eb
2 changed files with 2 additions and 2 deletions

View 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;

View File

@ -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);