diff options
author | Florian Eckert <fe@dev.tdt.de> | 2024-11-08 09:01:10 +0100 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2024-11-08 09:04:38 +0100 |
commit | cf2fd4d2e16d6afa91cabb7aa4a1a231a35c6052 (patch) | |
tree | 1cf7dc99055c87c2f81c560cc08fc1e70e20c955 /src | |
parent | 9a76a00095230cf1ffe295395cb4deb21e39f678 (diff) |
fibocom: add additional USB_VID for NL668-EAU
The NL668-EAU 4G, 3G, 2G CAT4 is a modem from fibocom and is using a diffrent
USB_VID for this modem. By adding the new USB_VID, the 'fibocom' plugin is
now responsible and not the 'generic' plugin.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/fibocom/mm-plugin-fibocom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/fibocom/mm-plugin-fibocom.c b/src/plugins/fibocom/mm-plugin-fibocom.c index b36f1825..380d8f69 100644 --- a/src/plugins/fibocom/mm-plugin-fibocom.c +++ b/src/plugins/fibocom/mm-plugin-fibocom.c @@ -110,7 +110,7 @@ MM_PLUGIN_NAMED_CREATOR_SCOPE MMPlugin * mm_plugin_create_fibocom (void) { static const gchar *subsystems[] = { "tty", "net", "usbmisc", NULL }; - static const guint16 vendor_ids[] = { 0x2cb7, 0x1782, 0 }; + static const guint16 vendor_ids[] = { 0x2cb7, 0x1782, 0x1508, 0 }; return MM_PLUGIN ( g_object_new (MM_TYPE_PLUGIN_FIBOCOM, |