diff options
author | Fanice.luo <1494617953@qq.com> | 2022-08-19 09:57:10 +0800 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2022-09-08 11:44:57 +0000 |
commit | 484d1d065e1f37adb92451d5045a9a68fbca306c (patch) | |
tree | 0332876ee4b504f03ac8c1303225850c3184f8ca | |
parent | cb676b5964f87d3983e0c3cc6437a7a24bcc35cd (diff) |
cinterion: add support thales PCIE vid(0x1269) in the cinterion.
For SDX55 and SDX65 can identify the corrrect plugin(cinterion), and the plugin is updated to support the wwan subsystem.
-rw-r--r-- | plugins/cinterion/mm-plugin-cinterion.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/cinterion/mm-plugin-cinterion.c b/plugins/cinterion/mm-plugin-cinterion.c index 2957df11..b0f3f992 100644 --- a/plugins/cinterion/mm-plugin-cinterion.c +++ b/plugins/cinterion/mm-plugin-cinterion.c @@ -182,9 +182,9 @@ grab_port (MMPlugin *self, G_MODULE_EXPORT MMPlugin * mm_plugin_create (void) { - static const gchar *subsystems[] = { "tty", "net", "usbmisc", NULL }; + static const gchar *subsystems[] = { "tty", "net", "usbmisc", "wwan", NULL }; static const gchar *vendor_strings[] = { "cinterion", "siemens", NULL }; - static const guint16 vendor_ids[] = { 0x1e2d, 0x0681, 0 }; + static const guint16 vendor_ids[] = { 0x1e2d, 0x0681, 0x1269, 0 }; static const MMAsyncMethod custom_init = { .async = G_CALLBACK (cinterion_custom_init), .finish = G_CALLBACK (cinterion_custom_init_finish), |