[PATCH] thuraya: filter by vendor ID instead of vendor string
Aleksander Morgado
aleksander at aleksander.es
Sat Feb 13 17:06:36 UTC 2016
On 13/02/16 17:37, Thomas Sailer wrote:
> 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>
Pushed to git master, thanks!
> ---
> 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));
> }
>
--
Aleksander
https://aleksander.es
More information about the ModemManager-devel
mailing list