aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-10-24 10:11:32 +0200
committerAleksander Morgado <aleksander@lanedo.com>2012-10-24 10:14:44 +0200
commit69fe9a8b3bae1a9b6d301c5d2e03df2f8271df47 (patch)
tree6d8475e481db5737cea871a1ef4dfc0ffbf9bff1
parent18c3dfad9cd2c8cf7f3f4c49aa28d540691bc9ab (diff)
via: plugin has vendor/product string probing, so needs to be sorted last06-huawei
The flag to get the plugin sorted last allows us to ensure that all plugins without vendor/product string probing (e.g. vendor/product ID probing) are run before. We don't want the Via plugin to start probing e.g. Huawei modems. In git master this flag in the plugin is not needed, it is automatically ordered last if vendor/product ID probing is set in the plugin.
-rw-r--r--plugins/mm-plugin-via.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mm-plugin-via.c b/plugins/mm-plugin-via.c
index 841d8eca..6135b582 100644
--- a/plugins/mm-plugin-via.c
+++ b/plugins/mm-plugin-via.c
@@ -30,6 +30,7 @@ mm_plugin_create (void)
{
return MM_PLUGIN (g_object_new (MM_TYPE_PLUGIN_VIA,
MM_PLUGIN_BASE_NAME, "Via CBP7",
+ MM_PLUGIN_BASE_SORT_LAST, TRUE,
NULL));
}