diff options
-rw-r--r-- | plugins/telit/mm-broadband-modem-telit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/telit/mm-broadband-modem-telit.c b/plugins/telit/mm-broadband-modem-telit.c index 676b69ea..4178e7d6 100644 --- a/plugins/telit/mm-broadband-modem-telit.c +++ b/plugins/telit/mm-broadband-modem-telit.c @@ -615,8 +615,8 @@ qss_setup_step (GTask *task) switch (ctx->step) { case QSS_SETUP_STEP_FIRST: - /* Fall back on next step */ ctx->step++; + /* fall through */ case QSS_SETUP_STEP_QUERY: mm_base_modem_at_command (MM_BASE_MODEM (self), "#QSS?", @@ -649,8 +649,8 @@ qss_setup_step (GTask *task) task); return; } - /* Fall back to next step */ ctx->step++; + /* fall through */ case QSS_SETUP_STEP_LAST: /* If all enabling actions failed (either both, or only primary if * there is no secondary), then we return an error */ @@ -905,8 +905,8 @@ load_unlock_retries_step (GTask *task) ctx = g_task_get_task_data (task); switch (ctx->step) { case LOAD_UNLOCK_RETRIES_STEP_FIRST: - /* Fall back on next step */ ctx->step++; + /* fall through */ case LOAD_UNLOCK_RETRIES_STEP_LOCK: handle_csim_locking (task, TRUE); break; |