diff options
Diffstat (limited to 'src/mm-iface-modem.c')
-rw-r--r-- | src/mm-iface-modem.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mm-iface-modem.c b/src/mm-iface-modem.c index 8af6a6cc..79590a1c 100644 --- a/src/mm-iface-modem.c +++ b/src/mm-iface-modem.c @@ -1646,7 +1646,7 @@ mm_iface_modem_enable_finish (MMIfaceModem *self, VOID_REPLY_READY_FN (modem_init); VOID_REPLY_READY_FN (modem_power_up); VOID_REPLY_READY_FN (modem_after_power_up); -VOID_REPLY_READY_FN (modem_flow_control); +VOID_REPLY_READY_FN (setup_flow_control); static void load_supported_charsets_ready (MMIfaceModem *self, @@ -1783,11 +1783,11 @@ interface_enabling_step (EnablingContext *ctx) ctx->step++; case ENABLING_STEP_FLOW_CONTROL: - if (MM_IFACE_MODEM_GET_INTERFACE (ctx->self)->modem_flow_control && - MM_IFACE_MODEM_GET_INTERFACE (ctx->self)->modem_flow_control_finish) { - MM_IFACE_MODEM_GET_INTERFACE (ctx->self)->modem_flow_control ( + if (MM_IFACE_MODEM_GET_INTERFACE (ctx->self)->setup_flow_control && + MM_IFACE_MODEM_GET_INTERFACE (ctx->self)->setup_flow_control_finish) { + MM_IFACE_MODEM_GET_INTERFACE (ctx->self)->setup_flow_control ( ctx->self, - (GAsyncReadyCallback)modem_flow_control_ready, + (GAsyncReadyCallback)setup_flow_control_ready, ctx); return; } |