diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-08-05 20:42:44 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-08-29 17:26:43 +0200 |
commit | e2c6c66d0c94000e34d621b2e1b11f772dcd0552 (patch) | |
tree | b9a65ea8dca03534ddf196d4e81150ad31863f18 | |
parent | 651d306c282d93bfd23d3987c0c2f23407d6ad94 (diff) |
broadband-modem-qmi: fix method name
Sync with libqmi:
commit cc97645578d937417bb2d72d22714776a98c549e
Author: Aleksander Morgado <aleksander@lanedo.com>
Date: Thu Aug 2 12:15:05 2012 +0200
nas: don't mistake 'change duration' with 'preference duration'
They actually have POWER_CYCLE and PERMANENT values swapped.
Kudos to the one who decided that.
-rw-r--r-- | src/mm-broadband-modem-qmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mm-broadband-modem-qmi.c b/src/mm-broadband-modem-qmi.c index 33501653..16d09740 100644 --- a/src/mm-broadband-modem-qmi.c +++ b/src/mm-broadband-modem-qmi.c @@ -2162,7 +2162,7 @@ set_allowed_modes_context_step (SetAllowedModesContext *ctx) qmi_message_nas_set_system_selection_preference_input_set_gsm_wcdma_acquisition_order_preference (input, order, NULL); } - qmi_message_nas_set_system_selection_preference_input_set_preference_duration (input, QMI_NAS_PREFERENCE_DURATION_PERMANENT, NULL); + qmi_message_nas_set_system_selection_preference_input_set_change_duration (input, QMI_NAS_CHANGE_DURATION_PERMANENT, NULL); qmi_client_nas_set_system_selection_preference ( ctx->client, |