diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2013-05-07 09:05:49 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2013-05-07 09:05:49 +0200 |
commit | 76d97c6334908dc6dab6972f8142c3a64081e3ec (patch) | |
tree | 6ce3afe45b5c8163084bc29abc52e5a98ff5a1a5 | |
parent | 89ae657fcedf0028cfd46aede6ecd308494747d4 (diff) |
novatel: don't explicitly filter by drivers
No real need to do it; the VID filter is already enough.
-rw-r--r-- | plugins/novatel/mm-plugin-novatel.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/novatel/mm-plugin-novatel.c b/plugins/novatel/mm-plugin-novatel.c index 5f2e0a82..2930d0cf 100644 --- a/plugins/novatel/mm-plugin-novatel.c +++ b/plugins/novatel/mm-plugin-novatel.c @@ -77,13 +77,11 @@ mm_plugin_create (void) static const mm_uint16_pair forbidden_products[] = { { 0x1410, 0x9010 }, /* Novatel E362 */ { 0x1410, 0xb001 }, /* Novatel USB551L */ {0, 0} }; - static const gchar *drivers[] = { "option1", "option", NULL }; return MM_PLUGIN ( g_object_new (MM_TYPE_PLUGIN_NOVATEL, MM_PLUGIN_NAME, "Novatel", MM_PLUGIN_ALLOWED_SUBSYSTEMS, subsystems, - MM_PLUGIN_ALLOWED_DRIVERS, drivers, MM_PLUGIN_ALLOWED_VENDOR_IDS, vendors, MM_PLUGIN_FORBIDDEN_PRODUCT_IDS, forbidden_products, MM_PLUGIN_ALLOWED_AT, TRUE, |