diff options
Diffstat (limited to 'plugins/option')
-rw-r--r-- | plugins/option/mm-plugin-hso.c | 6 | ||||
-rw-r--r-- | plugins/option/mm-plugin-option.c | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/plugins/option/mm-plugin-hso.c b/plugins/option/mm-plugin-hso.c index 1ea0aa28..1cc2bd7b 100644 --- a/plugins/option/mm-plugin-hso.c +++ b/plugins/option/mm-plugin-hso.c @@ -134,12 +134,11 @@ grab_port (MMPlugin *self, MMPortProbe *probe, GError **error) { - const gchar *name, *subsys; + const gchar *subsys; MMPortSerialAtFlag pflags = MM_PORT_SERIAL_AT_FLAG_NONE; MMPortType port_type; subsys = mm_port_probe_get_port_subsys (probe); - name = mm_port_probe_get_port_name (probe); port_type = mm_port_probe_get_port_type (probe); /* Detect AT port types */ @@ -161,7 +160,8 @@ grab_port (MMPlugin *self, return mm_base_modem_grab_port (modem, subsys, - name, + mm_port_probe_get_port_name (probe), + mm_port_probe_get_parent_path (probe), port_type, pflags, error); diff --git a/plugins/option/mm-plugin-option.c b/plugins/option/mm-plugin-option.c index aa6ddc3e..010e597b 100644 --- a/plugins/option/mm-plugin-option.c +++ b/plugins/option/mm-plugin-option.c @@ -80,6 +80,7 @@ grab_port (MMPlugin *self, return mm_base_modem_grab_port (modem, mm_port_probe_get_port_subsys (probe), mm_port_probe_get_port_name (probe), + mm_port_probe_get_parent_path (probe), MM_PORT_TYPE_AT, /* we only allow AT ports here */ pflags, error); |