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/pantech/mm-plugin-pantech.c | |
parent | 1fc061b6a533780041de89dd70a2567a265f6080 (diff) |
api,modem: new 'Physdev' property
Signed-off-by: Lukas Voegl <lvoegl@tdt.de>
Diffstat (limited to 'src/plugins/pantech/mm-plugin-pantech.c')
-rw-r--r-- | src/plugins/pantech/mm-plugin-pantech.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/pantech/mm-plugin-pantech.c b/src/plugins/pantech/mm-plugin-pantech.c index 7e3e14ee..c32c7a52 100644 --- a/src/plugins/pantech/mm-plugin-pantech.c +++ b/src/plugins/pantech/mm-plugin-pantech.c @@ -75,6 +75,7 @@ static const MMPortProbeAtCommand custom_at_probe[] = { static MMBaseModem * create_modem (MMPlugin *self, const gchar *uid, + const gchar *physdev, const gchar **drivers, guint16 vendor, guint16 product, @@ -86,6 +87,7 @@ create_modem (MMPlugin *self, if (mm_port_probe_list_has_qmi_port (probes)) { mm_obj_dbg (self, "QMI-powered Pantech modem found..."); return MM_BASE_MODEM (mm_broadband_modem_qmi_new (uid, + physdev, drivers, mm_plugin_get_name (self), vendor, @@ -94,6 +96,7 @@ create_modem (MMPlugin *self, #endif return MM_BASE_MODEM (mm_broadband_modem_pantech_new (uid, + physdev, drivers, mm_plugin_get_name (self), vendor, |