From 97aea7414c381f123d3b6805f9bdd7d80c95ac33 Mon Sep 17 00:00:00 2001 From: Sergey Matyukevich Date: Mon, 21 Dec 2020 23:01:29 +0300 Subject: [PATCH] plugin: gemalto: fix source of gprs notifications Modem USB interface does not receive certain gprs context notifications. Fix gprs chat: use Application USB interface to receive all the modem notifications. --- plugins/gemalto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gemalto.c b/plugins/gemalto.c index 238c7cc4..28ee3aff 100644 --- a/plugins/gemalto.c +++ b/plugins/gemalto.c @@ -606,7 +606,7 @@ static void gemalto_post_sim(struct ofono_modem *modem) driver = "atmodem"; } - gc = ofono_gprs_context_create(modem, 0, driver, data->mdm); + gc = ofono_gprs_context_create(modem, 0, driver, data->app); if (gprs && gc) ofono_gprs_add_context(gprs, gc);