diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-07-11 12:08:35 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-08-06 20:06:46 +0200 |
commit | 86f4923d7f69e7adcd488fb7085429b04dec3190 (patch) | |
tree | e96deedcab0067be4046039e95e1dc894a09b88d /src/mm-plugin-manager.c | |
parent | 624a1e9087a7020824a94914d3989ebf00093c07 (diff) |
plugin: new method to compare plugins
Instead of providing a method to get if a plugin is requesting to get sorted
last, we provide a way to comparing two plugins, compatible with the
GCompareFunc required in g_list_sort().
Diffstat (limited to 'src/mm-plugin-manager.c')
-rw-r--r-- | src/mm-plugin-manager.c | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/src/mm-plugin-manager.c b/src/mm-plugin-manager.c index b506f6da..fd7d3864 100644 --- a/src/mm-plugin-manager.c +++ b/src/mm-plugin-manager.c @@ -549,25 +549,6 @@ out: return plugin; } -static gint -compare_plugins (const MMPlugin *plugin_a, - const MMPlugin *plugin_b) -{ - /* The order of the plugins in the list is the same order used to check - * whether the plugin can manage a given modem: - * - First, modems that will check vendor ID from udev. - * - Then, modems that report to be sorted last (those which will check - * vendor ID also from the probed ones.. - */ - if (mm_plugin_get_sort_last (plugin_a) && - !mm_plugin_get_sort_last (plugin_b)) - return 1; - if (!mm_plugin_get_sort_last (plugin_a) && - mm_plugin_get_sort_last (plugin_b)) - return -1; - return 0; -} - static void found_plugin (MMPlugin *plugin) { @@ -628,7 +609,7 @@ load_plugins (MMPluginManager *self, /* Sort last plugins that request it */ self->priv->plugins = g_slist_sort (self->priv->plugins, - (GCompareFunc)compare_plugins); + (GCompareFunc)mm_plugin_cmp); /* Make sure the generic plugin is last */ if (generic_plugin) |