diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-03-02 11:48:59 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-03-02 14:38:35 +0100 |
commit | b509229d5747434be06e17af26c33fd8072a55f9 (patch) | |
tree | a251f3bcae506e54915ebc0aeb8500317aaf4f03 | |
parent | 496c4e30e93947648188ba97a6112064ce2af01f (diff) |
broadband-modem-qmi: use updated system info API
-rw-r--r-- | src/mm-broadband-modem-qmi.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mm-broadband-modem-qmi.c b/src/mm-broadband-modem-qmi.c index 8488d61e..d193f07d 100644 --- a/src/mm-broadband-modem-qmi.c +++ b/src/mm-broadband-modem-qmi.c @@ -2977,7 +2977,7 @@ process_gsm_info (MMBroadbandModemQmi *self, NULL, /* true_service_status */ NULL, /* preferred_data_path */ NULL) || - !qmi_message_nas_get_system_info_output_get_gsm_system_info ( + !qmi_message_nas_get_system_info_output_get_gsm_system_info_v2 ( response_output, &domain_valid, &domain, NULL, NULL, /* service_capability */ @@ -3001,7 +3001,7 @@ process_gsm_info (MMBroadbandModemQmi *self, NULL, /* true_service_status */ NULL, /* preferred_data_path */ NULL) || - !qmi_indication_nas_system_info_output_get_gsm_system_info ( + !qmi_indication_nas_system_info_output_get_gsm_system_info_v2 ( indication_output, &domain_valid, &domain, NULL, NULL, /* service_capability */ @@ -3085,7 +3085,7 @@ process_wcdma_info (MMBroadbandModemQmi *self, NULL, /* true_service_status */ NULL, /* preferred_data_path */ NULL) || - !qmi_message_nas_get_system_info_output_get_wcdma_system_info ( + !qmi_message_nas_get_system_info_output_get_wcdma_system_info_v2 ( response_output, &domain_valid, &domain, NULL, NULL, /* service_capability */ @@ -3110,7 +3110,7 @@ process_wcdma_info (MMBroadbandModemQmi *self, NULL, /* true_service_status */ NULL, /* preferred_data_path */ NULL) || - !qmi_indication_nas_system_info_output_get_wcdma_system_info ( + !qmi_indication_nas_system_info_output_get_wcdma_system_info_v2 ( indication_output, &domain_valid, &domain, NULL, NULL, /* service_capability */ @@ -3197,7 +3197,7 @@ process_lte_info (MMBroadbandModemQmi *self, NULL, /* true_service_status */ NULL, /* preferred_data_path */ NULL) || - !qmi_message_nas_get_system_info_output_get_lte_system_info ( + !qmi_message_nas_get_system_info_output_get_lte_system_info_v2 ( response_output, &domain_valid, &domain, NULL, NULL, /* service_capability */ @@ -3220,7 +3220,7 @@ process_lte_info (MMBroadbandModemQmi *self, NULL, /* true_service_status */ NULL, /* preferred_data_path */ NULL) || - !qmi_indication_nas_system_info_output_get_lte_system_info ( + !qmi_indication_nas_system_info_output_get_lte_system_info_v2 ( indication_output, &domain_valid, &domain, NULL, NULL, /* service_capability */ |