diff options
author | Theodore A. Roth <theodore_roth@trimble.com> | 2021-08-18 06:30:27 -0600 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2022-03-25 11:22:46 +0000 |
commit | e8bb90e006179aa7f38fba1657d6f884ef488164 (patch) | |
tree | d5bac52d967c95d5852a749005166ff8b03cc9c7 | |
parent | 8d95c82f9c2d558148aec74cfcaf17e3941d806c (diff) |
cinterion: Add support for PLSx3w modems
Signed-off-by: Theodore A. Roth <theodore_roth@trimble.com>
-rw-r--r-- | plugins/cinterion/mm-broadband-bearer-cinterion.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/cinterion/mm-broadband-bearer-cinterion.c b/plugins/cinterion/mm-broadband-bearer-cinterion.c index dcc79a9f..2802a75c 100644 --- a/plugins/cinterion/mm-broadband-bearer-cinterion.c +++ b/plugins/cinterion/mm-broadband-bearer-cinterion.c @@ -44,6 +44,7 @@ typedef struct { * The expected USB interface mapping is: * INTERFACE=usb0 -> ID_USB_INTERFACE_NUM=0a * INTERFACE=usb1 -> ID_USB_INTERFACE_NUM=0c + * INTERFACE=usb0 -> ID_USB_INTERFACE_NUM=08 (PLSx3w) */ static const UsbInterfaceConfig usb_interface_configs[] = { { @@ -54,6 +55,10 @@ static const UsbInterfaceConfig usb_interface_configs[] = { .swwan_index = 2, .usb_iface_num = 0x0c, }, + { + .swwan_index = 1, + .usb_iface_num = 0x08, + }, }; static gint |