---
src/modem.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/src/modem.c b/src/modem.c
index 26468e8..655994b 100644
--- a/src/modem.c
+++ b/src/modem.c
@@ -1386,6 +1386,12 @@ static void gmr_cb(struct ofono_emulator *em,
attr_template(em, req, info->revision);
}
+static void gcap_cb(struct ofono_emulator *em,
+ struct ofono_emulator_request *req, void *userdata)
+{
+ attr_template(em, req, "+GCAP: +CGSM");
+}
+
static void dun_watch(struct ofono_atom *atom,
enum ofono_atom_watch_condition cond, void *data)
{
@@ -1397,6 +1403,7 @@ static void dun_watch(struct ofono_atom *atom,
ofono_emulator_add_handler(em, "+GMI", gmi_cb, data, NULL);
ofono_emulator_add_handler(em, "+GMM", gmm_cb, data, NULL);
ofono_emulator_add_handler(em, "+GMR", gmr_cb, data, NULL);
+ ofono_emulator_add_handler(em, "+GCAP", gcap_cb, data, NULL);
}
int ofono_devinfo_driver_register(const struct ofono_devinfo_driver *d)
--
1.7.1
Show replies by date
Hi Olivier,
On 03/23/2011 11:08 AM, Olivier Guiter wrote:
---
src/modem.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
Patch has been applied, thanks.
Regards,
-Denis