diff options
author | Aleksander Morgado <aleksandermj@chromium.org> | 2023-10-25 10:39:23 +0000 |
---|---|---|
committer | Aleksander Morgado <aleksandermj@chromium.org> | 2023-10-26 12:35:50 +0000 |
commit | a3073801131ac8917e32ed50620bd61191ead101 (patch) | |
tree | 4f01dbb7bb8bb6d30ee80a82a99c0c5673551cf0 /src/mm-bearer-qmi.c | |
parent | cbb825a23607d6c57acd2ced216eb6d2f46cda2d (diff) |
modem-helpers-qmi: minor method rename
Diffstat (limited to 'src/mm-bearer-qmi.c')
-rw-r--r-- | src/mm-bearer-qmi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-bearer-qmi.c b/src/mm-bearer-qmi.c index 54f2e934..49ccba14 100644 --- a/src/mm-bearer-qmi.c +++ b/src/mm-bearer-qmi.c @@ -1238,7 +1238,7 @@ mobile_equipment_error_from_start_network_output (MMBearerQmi /* If we have a 3GPP verbose call end reason, we try to build an error * with the exact error code and message */ if (verbose_cer_type == QMI_WDS_VERBOSE_CALL_END_REASON_TYPE_3GPP) - return qmi_mobile_equipment_error_from_verbose_call_end_reason_3gpp ((QmiWdsVerboseCallEndReason3gpp)verbose_cer_reason, self); + return mm_error_from_wds_verbose_call_end_reason_3gpp ((QmiWdsVerboseCallEndReason3gpp)verbose_cer_reason, self); return g_error_new (MM_MOBILE_EQUIPMENT_ERROR, MM_MOBILE_EQUIPMENT_ERROR_UNKNOWN, "Call failed: %s error: %s", verbose_cer_type_str, verbose_cer_reason_str); @@ -1405,7 +1405,7 @@ packet_service_status_indication_cb (QmiClientWds *client, /* If we have a 3GPP verbose call end reason, we try to build an error * with the exact error code and message */ if (verbose_cer_type == QMI_WDS_VERBOSE_CALL_END_REASON_TYPE_3GPP) - connection_error = qmi_mobile_equipment_error_from_verbose_call_end_reason_3gpp ((QmiWdsVerboseCallEndReason3gpp)verbose_cer_reason, self); + connection_error = mm_error_from_wds_verbose_call_end_reason_3gpp ((QmiWdsVerboseCallEndReason3gpp)verbose_cer_reason, self); else connection_error = g_error_new (MM_MOBILE_EQUIPMENT_ERROR, MM_MOBILE_EQUIPMENT_ERROR_UNKNOWN, "Call failed: %s error: %s", verbose_cer_type_str, verbose_cer_reason_str); |