From: Thomas Sailer <t.sai...@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.sai...@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

_______________________________________________
ModemManager-devel mailing list
ModemManager-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/modemmanager-devel

Reply via email to