aboutsummaryrefslogtreecommitdiff
path: root/src/mm-port-probe.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-08-30 13:57:56 +0200
committerAleksander Morgado <aleksander@lanedo.com>2012-08-30 13:57:56 +0200
commit1ca46bb4a7e750655f3d066881f4f3823c03f537 (patch)
treeb91bcec76111903dc4276e669502a07ebda57ef8 /src/mm-port-probe.c
parenta4e5964506cbb6613421ab44bb43c225eb9d82a3 (diff)
port-probe: easier check for Icera support over a list of port probes
Diffstat (limited to 'src/mm-port-probe.c')
-rw-r--r--src/mm-port-probe.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/mm-port-probe.c b/src/mm-port-probe.c
index 04a1bf8b..e0f3788a 100644
--- a/src/mm-port-probe.c
+++ b/src/mm-port-probe.c
@@ -1309,6 +1309,19 @@ mm_port_probe_is_icera (MMPortProbe *self)
FALSE);
}
+gboolean
+mm_port_probe_list_is_icera (GList *probes)
+{
+ GList *l;
+
+ for (l = probes; l; l = g_list_next (l)) {
+ if (mm_port_probe_is_icera (MM_PORT_PROBE (l->data)))
+ return TRUE;
+ }
+
+ return FALSE;
+}
+
const gchar *
mm_port_probe_get_port_name (MMPortProbe *self)
{