[PATCH] thuraya: filter by vendor ID instead of vendor string
Thomas Sailer
sailer at sailer.dynip.lugs.ch
Sat Feb 13 16:37:15 UTC 2016
From: Thomas Sailer <t.sailer at alumni.ethz.ch>
Probe the Thuraya XT modem by USB vendor ID; there are no RS232 versions
to my knowledge.
One of my computers exhibiting the probing issue (VID/PID of the PCI
host controller instead of the USB device) fixed itself after a reboot.
Signed-off-by: Thomas Sailer <t.sailer at alumni.ethz.ch>
---
plugins/thuraya/mm-plugin-thuraya.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/plugins/thuraya/mm-plugin-thuraya.c b/plugins/thuraya/mm-plugin-thuraya.c
index df8a6aa..ae7bf77 100644
--- a/plugins/thuraya/mm-plugin-thuraya.c
+++ b/plugins/thuraya/mm-plugin-thuraya.c
@@ -60,13 +60,13 @@ G_MODULE_EXPORT MMPlugin *
mm_plugin_create (void)
{
static const gchar *subsystems[] = { "tty", NULL };
- static const gchar *vendor_strings[] = { "manufacturer apsi", NULL };
+ static const guint16 vendor_ids[] = { 0x1a26, 0 };
return MM_PLUGIN (
g_object_new (MM_TYPE_PLUGIN_THURAYA,
MM_PLUGIN_NAME, "Thuraya",
MM_PLUGIN_ALLOWED_SUBSYSTEMS, subsystems,
- MM_PLUGIN_ALLOWED_VENDOR_STRINGS, vendor_strings,
+ MM_PLUGIN_ALLOWED_VENDOR_IDS, vendor_ids,
MM_PLUGIN_ALLOWED_AT, TRUE,
NULL));
}
--
2.5.0
More information about the ModemManager-devel
mailing list