diff options
author | Lukas Voegl <lvoegl@tdt.de> | 2023-09-15 12:59:54 +0200 |
---|---|---|
committer | Lukas Voegl <lvoegl@tdt.de> | 2023-09-18 10:53:12 +0200 |
commit | 8cd1c1bdb9ba5bfe1b69b4484cc46bdd4720fdb4 (patch) | |
tree | 959258791644b9dd12dd8949c159363cf93e0ce8 /src/plugins/foxconn/mm-plugin-foxconn.c | |
parent | 1fc061b6a533780041de89dd70a2567a265f6080 (diff) |
api,modem: new 'Physdev' property
Signed-off-by: Lukas Voegl <lvoegl@tdt.de>
Diffstat (limited to 'src/plugins/foxconn/mm-plugin-foxconn.c')
-rw-r--r-- | src/plugins/foxconn/mm-plugin-foxconn.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/foxconn/mm-plugin-foxconn.c b/src/plugins/foxconn/mm-plugin-foxconn.c index ecc0df2c..70da1608 100644 --- a/src/plugins/foxconn/mm-plugin-foxconn.c +++ b/src/plugins/foxconn/mm-plugin-foxconn.c @@ -45,6 +45,7 @@ MM_DEFINE_PLUGIN (FOXCONN, foxconn, Foxconn) static MMBaseModem * create_modem (MMPlugin *self, const gchar *uid, + const gchar *physdev, const gchar **drivers, guint16 vendor, guint16 product, @@ -56,6 +57,7 @@ create_modem (MMPlugin *self, if (mm_port_probe_list_has_qmi_port (probes)) { mm_obj_dbg (self, "QMI-powered Foxconn-branded modem found..."); return MM_BASE_MODEM (mm_broadband_modem_qmi_new (uid, + physdev, drivers, mm_plugin_get_name (self), vendor, @@ -67,6 +69,7 @@ create_modem (MMPlugin *self, if (mm_port_probe_list_has_mbim_port (probes)) { mm_obj_dbg (self, "MBIM-powered Foxconn-branded modem found..."); return MM_BASE_MODEM (mm_broadband_modem_mbim_foxconn_new (uid, + physdev, drivers, mm_plugin_get_name (self), vendor, @@ -76,6 +79,7 @@ create_modem (MMPlugin *self, mm_obj_dbg (self, "Foxconn-branded generic modem found..."); return MM_BASE_MODEM (mm_broadband_modem_new (uid, + physdev, drivers, mm_plugin_get_name (self), vendor, |