diff options
author | Bob Ham <bob.ham@puri.sm> | 2020-02-04 11:09:45 +0000 |
---|---|---|
committer | Bob Ham <bob.ham@puri.sm> | 2020-02-06 15:16:46 +0000 |
commit | 38d7cc6683008394f51cadc6b66446ba96c5f388 (patch) | |
tree | 419d44a3de58e49451170bbb73173289e68d2afd | |
parent | e128210a27e78b7d421993a610a12871ed922e19 (diff) |
broadband-modem: add secondary AT port to in-call port context
The BroadMobi BM818 sends URCs on the secondary port which are
currently missed. To fix this, we include the secondary port in the
port context.
-rw-r--r-- | src/mm-broadband-modem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mm-broadband-modem.c b/src/mm-broadband-modem.c index 4b81c6a3..61ceae8b 100644 --- a/src/mm-broadband-modem.c +++ b/src/mm-broadband-modem.c @@ -7673,7 +7673,7 @@ modem_voice_setup_in_call_unsolicited_events (MMIfaceModemVoice *_self, mm_dbg ("Setting up in-call ports context"); ctx = ports_context_new (); - if (!ports_context_open (self, ctx, FALSE, FALSE, FALSE, &error)) { + if (!ports_context_open (self, ctx, FALSE, TRUE, FALSE, &error)) { ports_context_unref (ctx); g_prefix_error (&error, "Couldn't open ports in-call: "); } else { |