Skip to content

Commit 52a1d9d

Browse files
GustavoARSilvagregkh
authored andcommitted
staging: rtl8723bs: Use fallthrough pseudo-keyword
Replace the existing /* fall through */ comments and its variants with the new pseudo-keyword macro fallthrough[1]. [1] https://www.kernel.org/doc/html/v5.7/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-through Signed-off-by: Gustavo A. R. Silva <[email protected]> Link: https://lore.kernel.org/r/20200727190657.GA30194@embeddedor Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 43feb00 commit 52a1d9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/staging/rtl8723bs/core/rtw_mlme_ext.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ void mgt_dispatcher(struct adapter *padapter, union recv_frame *precv_frame)
568568
ptable->func = &OnAuth;
569569
else
570570
ptable->func = &OnAuthClient;
571-
/* fall through */
571+
fallthrough;
572572
case WIFI_ASSOCREQ:
573573
case WIFI_REASSOCREQ:
574574
_mgt_dispatcher(padapter, ptable, precv_frame);

0 commit comments

Comments
 (0)