d83e94ed82
Fixes compile errors against certain kernels. Signed-off-by: Christian Stewart <christian@paral.in> Reviewed-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
30 lines
962 B
Diff
30 lines
962 B
Diff
From 99f1e8bd7172ddf9613db3531a8b37921ed73351 Mon Sep 17 00:00:00 2001
|
|
From: Jesper Skov <jb1811@jyskebank.dk>
|
|
Date: Fri, 25 Oct 2019 10:05:41 +0200
|
|
Subject: [PATCH] Fix implicit fallthrough comments for kernel 5.3
|
|
|
|
[Upstream: https://github.com/abperiasamy/rtl8812AU_8821AU_linux/commit/e8a30a4c5a80efbbd5b1dbfe11b22916df4492f9.patch]
|
|
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
|
|
Signed-off-by: Christian Stewart <christian@paral.in>
|
|
---
|
|
core/rtw_mlme_ext.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/core/rtw_mlme_ext.c b/core/rtw_mlme_ext.c
|
|
index 24565ea..380f507 100644
|
|
--- a/core/rtw_mlme_ext.c
|
|
+++ b/core/rtw_mlme_ext.c
|
|
@@ -758,7 +758,9 @@ void mgt_dispatcher(_adapter *padapter, union recv_frame *precv_frame)
|
|
else
|
|
ptable->func = &OnAuthClient;
|
|
//pass through
|
|
+ //fallthrough
|
|
case WIFI_ASSOCREQ:
|
|
+ //fallthrough
|
|
case WIFI_REASSOCREQ:
|
|
_mgt_dispatcher(padapter, ptable, precv_frame);
|
|
#ifdef CONFIG_HOSTAPD_MLME
|
|
--
|
|
2.28.0
|
|
|