diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2020-01-31 09:59:51 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2020-01-31 15:18:35 +0100 |
commit | 72a124a1218d0658036561763473b830a2c26bb3 (patch) | |
tree | 446db6707750c00058057b51d7f02b6bda8520e1 | |
parent | 3197a52c58038a10cc63846867cb24d5204a59a0 (diff) |
ublox: fix warnings with -Wimplicit-fallthrough
ublox/mm-broadband-modem-ublox.c:458:18: error: this statement may fall through [-Werror=implicit-fallthrough=]
458 | ctx->step++;
| ~~~~~~~~~^~
ublox/mm-broadband-modem-ublox.c:461:5: note: here
461 | case SET_CURRENT_MODES_BANDS_STEP_ACQUIRE:
| ^~~~
ublox/mm-broadband-modem-ublox.c:468:18: error: this statement may fall through [-Werror=implicit-fallthrough=]
468 | ctx->step++;
| ~~~~~~~~~^~
ublox/mm-broadband-modem-ublox.c:471:5: note: here
471 | case SET_CURRENT_MODES_BANDS_STEP_CURRENT_POWER:
| ^~~~
...
-rw-r--r-- | plugins/ublox/mm-broadband-modem-ublox.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/ublox/mm-broadband-modem-ublox.c b/plugins/ublox/mm-broadband-modem-ublox.c index 32ab7e56..83933d8d 100644 --- a/plugins/ublox/mm-broadband-modem-ublox.c +++ b/plugins/ublox/mm-broadband-modem-ublox.c @@ -456,7 +456,7 @@ set_current_modes_bands_step (GTask *task) switch (ctx->step) { case SET_CURRENT_MODES_BANDS_STEP_FIRST: ctx->step++; - /* fall down */ + /* fall through */ case SET_CURRENT_MODES_BANDS_STEP_ACQUIRE: mm_dbg ("acquiring power operation..."); @@ -466,7 +466,7 @@ set_current_modes_bands_step (GTask *task) return; } ctx->step++; - /* fall down */ + /* fall through */ case SET_CURRENT_MODES_BANDS_STEP_CURRENT_POWER: /* If using CFUN, we check whether we're already in low-power mode. @@ -483,7 +483,7 @@ set_current_modes_bands_step (GTask *task) return; } ctx->step++; - /* fall down */ + /* fall through */ case SET_CURRENT_MODES_BANDS_STEP_BEFORE_COMMAND: /* If COPS required around the set command, run it unconditionally */ @@ -515,7 +515,7 @@ set_current_modes_bands_step (GTask *task) } ctx->step++; - /* fall down */ + /* fall through */ case SET_CURRENT_MODES_BANDS_STEP_COMMAND: mm_dbg ("updating configuration..."); @@ -553,13 +553,13 @@ set_current_modes_bands_step (GTask *task) } } ctx->step++; - /* fall down */ + /* fall through */ case SET_CURRENT_MODES_BANDS_STEP_RELEASE: mm_dbg ("releasing power operation..."); release_power_operation (ctx->self); ctx->step++; - /* fall down */ + /* fall through */ case SET_CURRENT_MODES_BANDS_STEP_LAST: if (ctx->saved_error) { @@ -1647,7 +1647,7 @@ create_bearer_step (GTask *task) switch (ctx->step) { case CREATE_BEARER_STEP_FIRST: ctx->step++; - /* fall down */ + /* fall through */ case CREATE_BEARER_STEP_CHECK_PROFILE: if (!ctx->self->priv->profile_checked) { @@ -1662,7 +1662,7 @@ create_bearer_step (GTask *task) return; } ctx->step++; - /* fall down */ + /* fall through */ case CREATE_BEARER_STEP_CHECK_MODE: if (!ctx->self->priv->mode_checked) { @@ -1677,7 +1677,7 @@ create_bearer_step (GTask *task) return; } ctx->step++; - /* fall down */ + /* fall through */ case CREATE_BEARER_STEP_CREATE_BEARER: /* If we have a net interface, we'll create a u-blox bearer, unless for |