Commit 062f97a3 authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by David S. Miller

isdn/gigaset/isocdata: mark expected switch fall-through

Notice that in this particular case, I replaced the
"--v-- fall through --v--" comment with a proper
"fall through", which is what GCC is expecting to
find.

This fix is part of the ongoing efforts to enabling
-Wimplicit-fallthrough
Signed-off-by: default avatarGustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cd7f7df6
...@@ -906,7 +906,7 @@ static void cmd_loop(unsigned char *src, int numbytes, struct inbuf_t *inbuf) ...@@ -906,7 +906,7 @@ static void cmd_loop(unsigned char *src, int numbytes, struct inbuf_t *inbuf)
cs->respdata[0] = 0; cs->respdata[0] = 0;
break; break;
} }
/* --v-- fall through --v-- */ /* fall through */
case '\r': case '\r':
/* end of message line, pass to response handler */ /* end of message line, pass to response handler */
if (cbytes >= MAX_RESP_SIZE) { if (cbytes >= MAX_RESP_SIZE) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment