]> sigrok.org Git - libsigrok.git/commitdiff
Add sr_ prefix for hwcap structs/functions.
authorUwe Hermann <redacted>
Tue, 15 Feb 2011 18:24:52 +0000 (19:24 +0100)
committerUwe Hermann <redacted>
Sun, 20 Feb 2011 20:16:19 +0000 (21:16 +0100)
hwplugin.c
sigrok-proto.h
sigrok.h

index 046670d5ffe13731a98f233bbdaea6064c42e0e0..78621c161873dcc38f63311975e6178c3013d64d 100644 (file)
@@ -33,7 +33,8 @@ GSList *plugins;
  * This enumerates which plugin capabilities correspond to user-settable
  * options.
  */
-struct hwcap_option hwcap_options[] = {
+/* TODO: This shouldn't be a global. */
+struct sr_hwcap_option sr_hwcap_options[] = {
        {SR_HWCAP_SAMPLERATE, SR_T_UINT64, "Sample rate", "samplerate"},
        {SR_HWCAP_CAPTURE_RATIO, SR_T_UINT64, "Pre-trigger capture ratio", "captureratio"},
        {SR_HWCAP_PATTERN_MODE, SR_T_CHAR, "Pattern generator mode", "patternmode"},
@@ -203,7 +204,7 @@ void sr_serial_device_instance_free(struct sr_serial_device_instance *serial)
        free(serial->port);
 }
 
-int find_hwcap(int *capabilities, int hwcap)
+int sr_find_hwcap(int *capabilities, int hwcap)
 {
        int i;
 
@@ -215,13 +216,13 @@ int find_hwcap(int *capabilities, int hwcap)
        return FALSE;
 }
 
-struct hwcap_option *find_hwcap_option(int hwcap)
+struct sr_hwcap_option *sr_find_hwcap_option(int hwcap)
 {
        int i;
 
-       for (i = 0; hwcap_options[i].capability; i++) {
-               if (hwcap_options[i].capability == hwcap)
-                       return &hwcap_options[i];
+       for (i = 0; sr_hwcap_options[i].capability; i++) {
+               if (sr_hwcap_options[i].capability == hwcap)
+                       return &sr_hwcap_options[i];
        }
 
        return NULL;
index 4d6a68f4fa359910ca2e34d91cb739b7a8d612ec..7b337d48cbe189900a4ca7ea06e2aca5102ead85 100644 (file)
@@ -83,8 +83,8 @@ struct sr_serial_device_instance *sr_serial_device_instance_new(
                                        const char *port, int fd);
 void sr_serial_device_instance_free(struct sr_serial_device_instance *serial);
 
-int find_hwcap(int *capabilities, int hwcap);
-struct hwcap_option *find_hwcap_option(int hwcap);
+int sr_find_hwcap(int *capabilities, int hwcap);
+struct sr_hwcap_option *sr_find_hwcap_option(int hwcap);
 void source_remove(int fd);
 void source_add(int fd, int events, int timeout, receive_data_callback rcv_cb,
                void *user_data);
index 414890df13d12d58043fe425d51184e25f848497..e2bbecc59a24281af38471a7ce5ec7701dc5570d 100644 (file)
--- a/sigrok.h
+++ b/sigrok.h
@@ -237,7 +237,7 @@ enum {
        SR_HWCAP_CONTINUOUS,
 };
 
-struct hwcap_option {
+struct sr_hwcap_option {
        int capability;
        int type;
        char *description;