]> sigrok.org Git - sigrok-cli.git/blobdiff - parsers.c
sr: rename all sr_hwplugin(s)_* functions to sr_hw_*
[sigrok-cli.git] / parsers.c
index d6642b351e47372e705bfa883f84d45a6079a3c3..4430b90daa1f631b1aa384d285eac29c941fd336 100644 (file)
--- a/parsers.c
+++ b/parsers.c
@@ -164,12 +164,12 @@ struct sr_device *parse_devicestring(const char *devicestring)
                 * no need to let them all scan
                 */
                device = NULL;
-               plugins = sr_list_hwplugins();
+               plugins = sr_hw_list();
                for (p = plugins; p; p = p->next) {
                        plugin = p->data;
                        if (strcmp(plugin->name, devicestring))
                                continue;
-                       num_devices = sr_init_hwplugin(plugin);
+                       num_devices = sr_hw_init(plugin);
                        if (num_devices == 1) {
                                devices = sr_dev_list();
                                device = devices->data;