diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2017-03-01 18:43:45 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2017-03-01 18:43:45 +0100 |
commit | 7a048acd4496adc5a973ba40b35dff635b832e4f (patch) | |
tree | 11a4e854f41d86141293d05c4dec20faffd5b0e9 | |
parent | f10065d03c3b9e8543244f1f35e71044795a8a2c (diff) |
broadband-modem-mbim: disable parent access tech loading
The parent method would use QCDM to load access tech, but we already
have the access tech reported in MBIM via indications, so no real need
to mix that.
For context, see:
https://bugs.freedesktop.org/show_bug.cgi?id=100000
-rw-r--r-- | src/mm-broadband-modem-mbim.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mm-broadband-modem-mbim.c b/src/mm-broadband-modem-mbim.c index 4e63b19c..7188d2f8 100644 --- a/src/mm-broadband-modem-mbim.c +++ b/src/mm-broadband-modem-mbim.c @@ -3238,6 +3238,8 @@ iface_modem_init (MMIfaceModem *iface) iface->setup_charset_finish = NULL; iface->load_signal_quality = NULL; iface->load_signal_quality_finish = NULL; + iface->load_access_technologies = NULL; + iface->load_access_technologies_finish = NULL; /* Create MBIM-specific SIM */ iface->create_sim = create_sim; |