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/telit/mm-plugin-telit.c | |
parent | 1fc061b6a533780041de89dd70a2567a265f6080 (diff) |
api,modem: new 'Physdev' property
Signed-off-by: Lukas Voegl <lvoegl@tdt.de>
Diffstat (limited to 'src/plugins/telit/mm-plugin-telit.c')
-rw-r--r-- | src/plugins/telit/mm-plugin-telit.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/telit/mm-plugin-telit.c b/src/plugins/telit/mm-plugin-telit.c index 4cca3c68..b623aedf 100644 --- a/src/plugins/telit/mm-plugin-telit.c +++ b/src/plugins/telit/mm-plugin-telit.c @@ -44,6 +44,7 @@ MM_DEFINE_PLUGIN (TELIT, telit, Telit) static MMBaseModem * create_modem (MMPlugin *self, const gchar *uid, + const gchar *physdev, const gchar **drivers, guint16 vendor, guint16 product, @@ -55,6 +56,7 @@ create_modem (MMPlugin *self, if (mm_port_probe_list_has_qmi_port (probes)) { mm_obj_dbg (self, "QMI-powered Telit modem found..."); return MM_BASE_MODEM (mm_broadband_modem_qmi_new (uid, + physdev, drivers, mm_plugin_get_name (self), vendor, @@ -66,6 +68,7 @@ create_modem (MMPlugin *self, if (mm_port_probe_list_has_mbim_port (probes)) { mm_obj_dbg (self, "MBIM-powered Telit modem found..."); return MM_BASE_MODEM (mm_broadband_modem_mbim_telit_new (uid, + physdev, drivers, mm_plugin_get_name (self), vendor, @@ -75,6 +78,7 @@ create_modem (MMPlugin *self, #endif return MM_BASE_MODEM (mm_broadband_modem_telit_new (uid, + physdev, drivers, mm_plugin_get_name (self), vendor, |