summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2012-11-29 11:22:52 -0600
committerDan Williams <dcbw@redhat.com>2012-11-29 11:42:03 -0600
commit1e23fe62fe80a7351760bfb7fe9eeba7631d882b (patch)
tree7a8787e14aa2023629e73045d184c17f1d411a96
parentad51361cb78a2d2fae0b164d8396882dd2638bbf (diff)
sierra: USB 306 modems support PPP on the APPx ports
-rw-r--r--plugins/sierra/mm-plugin-sierra.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sierra/mm-plugin-sierra.c b/plugins/sierra/mm-plugin-sierra.c
index 0817f9cc..f51bca6d 100644
--- a/plugins/sierra/mm-plugin-sierra.c
+++ b/plugins/sierra/mm-plugin-sierra.c
@@ -97,13 +97,13 @@ gcap_ready (MMAtSerialPort *port,
g_object_set_data (G_OBJECT (ctx->probe), TAG_SIERRA_APP1_PORT, GUINT_TO_POINTER (TRUE));
/* 885 can handle PPP on the APP ports, leaving the primary port open
* for command and status while connected. Older modems (ie 8775) say
* they can but fail during PPP.
*/
- if (strstr (response->str, "C885"))
+ if (strstr (response->str, "C885") || strstr (response->str, "USB 306"))
g_object_set_data (G_OBJECT (ctx->probe), TAG_SIERRA_APP_PPP_OK, GUINT_TO_POINTER (TRUE));
/* For debugging: let users figure out if their device supports it or not */
if (getenv ("MM_SIERRA_APP1_PPP_OK")) {
mm_dbg ("Sierra: APP1 PPP OK '%s'", response->str);
g_object_set_data (G_OBJECT (ctx->probe), TAG_SIERRA_APP_PPP_OK, GUINT_TO_POINTER (TRUE));