diff options
author | Fanice Luo <1494617953@qq.com> | 2022-07-01 11:21:44 +0800 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2022-07-12 09:00:11 +0000 |
commit | f2a3d836db75a7538dc802b837d0cb9f41bb8966 (patch) | |
tree | 47cb35916e3abd1aeedeedb4204a0a9bf077ebbb /plugins/dell/mm-plugin-dell.c | |
parent | bbf1b272e6b894a5e7629ed3350869f4e917afc6 (diff) |
dell: Add DW5829e(T77W968) modules
add new device(0x413c:0x81e4 0x413c:0x81e6)
Diffstat (limited to 'plugins/dell/mm-plugin-dell.c')
-rw-r--r-- | plugins/dell/mm-plugin-dell.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/dell/mm-plugin-dell.c b/plugins/dell/mm-plugin-dell.c index 5d2a38ee..63d8b4da 100644 --- a/plugins/dell/mm-plugin-dell.c +++ b/plugins/dell/mm-plugin-dell.c @@ -394,9 +394,9 @@ create_modem (MMPlugin *self, #if defined WITH_MBIM if (mm_port_probe_list_has_mbim_port (probes)) { - /* Specific implementation for the DW5821e */ - if (vendor == 0x413c && (product == 0x81d7 || product == 0x81e0)) { - mm_obj_dbg (self, "MBIM-powered DW5821e (T77W968) modem found..."); + /* Specific implementation for the DW5821e and DW5829e */ + if (vendor == 0x413c && (product == 0x81d7 || product == 0x81e0 || product == 0x81e4 || product == 0x81e6)) { + mm_obj_dbg (self, "MBIM-powered DW5821e/DW5829e (T77W968) modem found..."); return MM_BASE_MODEM (mm_broadband_modem_mbim_foxconn_new (uid, drivers, mm_plugin_get_name (self), |