]> sigrok.org Git - libsigrok.git/commitdiff
sr: rename sr_hw_hwcap_get() to sr_devopt_get()
authorBert Vermeulen <redacted>
Sat, 4 Aug 2012 12:35:40 +0000 (14:35 +0200)
committerBert Vermeulen <redacted>
Sat, 4 Aug 2012 12:35:40 +0000 (14:35 +0200)
hwdriver.c
proto.h

index 118e49a2571159ec5aec56789c12c12d33f84713..d01ffc35fb11cba92921d5284a60f337cfe427e5 100644 (file)
@@ -264,17 +264,17 @@ SR_API const struct sr_hwcap_option *sr_drvopt_get(int hwopt)
 /**
  * Get information about a device option.
  *
- * @param hwcap The capability to get.
+ * @param hwopt The option to get.
  *
  * @return A pointer to a struct with information about the parameter, or NULL
  *         if the capability was not found.
  */
-SR_API const struct sr_hwcap_option *sr_hw_hwcap_get(int hwcap)
+SR_API const struct sr_hwcap_option *sr_devopt_get(int hwopt)
 {
        int i;
 
        for (i = 0; sr_hwcap_options[i].hwcap; i++) {
-               if (sr_hwcap_options[i].hwcap == hwcap)
+               if (sr_hwcap_options[i].hwcap == hwopt)
                        return &sr_hwcap_options[i];
        }
 
diff --git a/proto.h b/proto.h
index 7ac3d09e480b7151fce56a623207eac30d1a3d9d..ea4bc591a6c1853ee3c55175adc6691d063664d4 100644 (file)
--- a/proto.h
+++ b/proto.h
@@ -71,7 +71,7 @@ SR_API int sr_info_get(struct sr_dev_driver *driver, int id,
                const void **data, const struct sr_dev_inst *sdi);
 SR_API gboolean sr_driver_hwcap_exists(struct sr_dev_driver *driver, int hwcap);
 SR_API const struct sr_hwcap_option *sr_drvopt_get(int hwopt);
-SR_API const struct sr_hwcap_option *sr_hw_hwcap_get(int hwcap);
+SR_API const struct sr_hwcap_option *sr_devopt_get(int hwcap);
 
 /*--- session.c -------------------------------------------------------------*/