orinoco_usb: mark expected switch fall-through

In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
Gustavo A. R. Silva 2018-10-22 22:42:04 +02:00 committed by Kalle Valo
parent af71f8fef4
commit d56b26801e
1 changed files with 1 additions and 0 deletions

View File

@ -908,6 +908,7 @@ static int ezusb_access_ltv(struct ezusb_priv *upriv,
case EZUSB_CTX_REQ_SUBMITTED: case EZUSB_CTX_REQ_SUBMITTED:
if (!ctx->in_rid) if (!ctx->in_rid)
break; break;
/* fall through */
default: default:
err("%s: Unexpected context state %d", __func__, err("%s: Unexpected context state %d", __func__,
state); state);