summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2011-01-22 12:37:19 +0100
committerMarcel Holtmann <marcel@holtmann.org>2011-01-22 12:37:19 +0100
commitef0b594dfcc8f476d6f49ecf694fccaec6074078 (patch)
treebdfca0ee66bac8b3cb754b36e4768f478ff4851f
parente7a05dbfd37ffe887033ab08f560f1711464b3a5 (diff)
downloadofono-ef0b594dfcc8f476d6f49ecf694fccaec6074078.tar.bz2
atmodem: The Gobi devices have CI and LAC as unqouted strings
-rw-r--r--drivers/atmodem/atutil.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/atmodem/atutil.c b/drivers/atmodem/atutil.c
index da172538..a55b3f5c 100644
--- a/drivers/atmodem/atutil.c
+++ b/drivers/atmodem/atutil.c
@@ -178,6 +178,7 @@ gboolean at_util_parse_reg_unsolicited(GAtResult *result, const char *prefix,
goto out;
switch (vendor) {
+ case OFONO_VENDOR_GOBI:
case OFONO_VENDOR_HUAWEI:
case OFONO_VENDOR_NOVATEL:
if (g_at_result_iter_next_unquoted_string(&iter, &str) == TRUE)
@@ -262,6 +263,7 @@ gboolean at_util_parse_reg(GAtResult *result, const char *prefix,
goto out;
switch (vendor) {
+ case OFONO_VENDOR_GOBI:
case OFONO_VENDOR_HUAWEI:
case OFONO_VENDOR_NOVATEL:
r = g_at_result_iter_next_unquoted_string(&iter, &str);