diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2013-02-14 17:43:54 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2013-02-14 17:43:54 +0100 |
commit | 29c0560a9a40bd4ad0f864266dc754e0056d6bc5 (patch) | |
tree | 31897228dec7eb6b481eaa61814bcf7826188680 | |
parent | 914cda5de3fb61e517106ea01fdd1021b00493b8 (diff) |
broadband-modem-qmi: don't try to load access technologies using QCDM
-rw-r--r-- | src/mm-broadband-modem-qmi.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mm-broadband-modem-qmi.c b/src/mm-broadband-modem-qmi.c index aa82f0e5..464da87e 100644 --- a/src/mm-broadband-modem-qmi.c +++ b/src/mm-broadband-modem-qmi.c @@ -7496,6 +7496,12 @@ iface_modem_init (MMIfaceModem *iface) iface->set_bands = set_bands; iface->set_bands_finish = set_bands_finish; + /* Don't try to load access technologies, as we would be using parent's + * generic method (QCDM based). Access technologies are already reported via + * QMI when we load signal quality. */ + iface->load_access_technologies = NULL; + iface->load_access_technologies_finish = NULL; + /* Create QMI-specific SIM */ iface->create_sim = create_sim; iface->create_sim_finish = create_sim_finish; |