diff options
Diffstat (limited to 'src/mm-plugin.c')
-rw-r--r-- | src/mm-plugin.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mm-plugin.c b/src/mm-plugin.c index be6e39ff..13b46a75 100644 --- a/src/mm-plugin.c +++ b/src/mm-plugin.c @@ -781,6 +781,11 @@ mm_plugin_supports_port (MMPlugin *self, probe_run_flags |= MM_PORT_PROBE_MBIM; else probe_run_flags |= MM_PORT_PROBE_AT; + } else if (g_str_equal (mm_kernel_device_get_subsystem (port), "rpmsg")) { + if (self->priv->at) + probe_run_flags |= MM_PORT_PROBE_AT; + if (self->priv->qmi) + probe_run_flags |= MM_PORT_PROBE_QMI; } /* For potential AT ports, check for more things */ |