diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2019-11-12 10:55:06 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2019-11-13 12:31:58 +0100 |
commit | d7d2b9108e12f86f50f82f124066fab46792bd44 (patch) | |
tree | e5a599f1155f2e5ec14e2374c608d47601c69ea9 /plugins/dell/mm-plugin-dell.c | |
parent | 5ab5593edbf86a268f9b6d196f30e303c1e1b879 (diff) |
foxconn: new plugin to support the T77W968
The Dell DW5821e is really a re-branded Foxconn T77W968.
Diffstat (limited to 'plugins/dell/mm-plugin-dell.c')
-rw-r--r-- | plugins/dell/mm-plugin-dell.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/dell/mm-plugin-dell.c b/plugins/dell/mm-plugin-dell.c index 8f26b4ff..e9f8a0bd 100644 --- a/plugins/dell/mm-plugin-dell.c +++ b/plugins/dell/mm-plugin-dell.c @@ -16,7 +16,7 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * - * Copyright (C) 2015 Aleksander Morgado <aleksander@aleksander.es> + * Copyright (C) 2015-2019 Aleksander Morgado <aleksander@aleksander.es> */ #include <string.h> @@ -45,7 +45,7 @@ #if defined WITH_MBIM #include "mm-broadband-modem-mbim.h" #include "mm-broadband-modem-mbim-xmm.h" -#include "mm-broadband-modem-dell-dw5821e.h" +#include "mm-broadband-modem-foxconn-t77w968.h" #endif #define MAX_PORT_PROBE_TIMEOUTS 3 @@ -400,12 +400,12 @@ create_modem (MMPlugin *self, if (mm_port_probe_list_has_mbim_port (probes)) { /* Specific implementation for the DW5821e */ if (vendor == 0x413c && (product == 0x81d7 || product == 0x81e0)) { - mm_dbg ("MBIM-powered DW5821e modem found..."); - return MM_BASE_MODEM (mm_broadband_modem_dell_dw5821e_new (uid, - drivers, - mm_plugin_get_name (self), - vendor, - product)); + mm_dbg ("MBIM-powered DW5821e (T77W968) modem found..."); + return MM_BASE_MODEM (mm_broadband_modem_foxconn_t77w968_new (uid, + drivers, + mm_plugin_get_name (self), + vendor, + product)); } if (mm_port_probe_list_is_xmm (probes)) { |