summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2018-07-24 00:04:13 +0200
committerAleksander Morgado <aleksander@aleksander.es>2018-07-24 00:05:48 +0200
commit0046282a3b24a3eefe92384025cabc85e0519b6d (patch)
treee35ea5da09393823eae96c1f924b8fe8b38a6dcd
parent8ea8d4e7747d469e93c6a0c31a7b023e0f5633d1 (diff)
downloadModemManager-aleksander/dell-ttys.tar.gz
dell: don't ignore TTYs in QMI/MBIM modemsaleksander/dell-ttys
When we detect that the modem is QMI-capable or MBIM-capable, we still want to be able to use TTYs, for features unsupported by the main protocols. So, don't flag all the TTYs as non-AT non-QCDM, let them probe as usual instead.
-rw-r--r--plugins/dell/mm-plugin-dell.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/dell/mm-plugin-dell.c b/plugins/dell/mm-plugin-dell.c
index 5c97a4c27..2a059cf4e 100644
--- a/plugins/dell/mm-plugin-dell.c
+++ b/plugins/dell/mm-plugin-dell.c
@@ -259,8 +259,6 @@ custom_init_step (GTask *task)
if (mm_port_probe_list_has_qmi_port (mm_device_peek_port_probe_list (mm_port_probe_peek_device (probe)))) {
mm_dbg ("(Dell) no need to run custom init in (%s): device has QMI port",
mm_port_get_device (MM_PORT (ctx->port)));
- mm_port_probe_set_result_at (probe, FALSE);
- mm_port_probe_set_result_qcdm (probe, FALSE);
g_task_return_boolean (task, TRUE);
g_object_unref (task);
return;
@@ -272,8 +270,6 @@ custom_init_step (GTask *task)
if (mm_port_probe_list_has_mbim_port (mm_device_peek_port_probe_list (mm_port_probe_peek_device (probe)))) {
mm_dbg ("(Dell) no need to run custom init in (%s): device has MBIM port",
mm_port_get_device (MM_PORT (ctx->port)));
- mm_port_probe_set_result_at (probe, FALSE);
- mm_port_probe_set_result_qcdm (probe, FALSE);
g_task_return_boolean (task, TRUE);
g_object_unref (task);
return;