[openwrt/openwrt] rtl8812au-ct: fix build failure on linux kernel 6.6

LEDE Commits lede-commits at lists.infradead.org
Mon Mar 11 12:18:09 PDT 2024


robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/01f04539701c6a08bee3f648ec40dade7aba46cc

commit 01f04539701c6a08bee3f648ec40dade7aba46cc
Author: Weijie Gao <hackpascal at gmail.com>
AuthorDate: Fri Mar 1 00:46:12 2024 +0800

    rtl8812au-ct: fix build failure on linux kernel 6.6
    
    Use the correct return status code to avoid incompatible type error
    
    Signed-off-by: Weijie Gao <hackpascal at gmail.com>
---
 .../rtl8812au-ct/patches/008-fix-ret-status-code-type.patch   | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/package/kernel/rtl8812au-ct/patches/008-fix-ret-status-code-type.patch b/package/kernel/rtl8812au-ct/patches/008-fix-ret-status-code-type.patch
new file mode 100644
index 0000000000..2c776288bf
--- /dev/null
+++ b/package/kernel/rtl8812au-ct/patches/008-fix-ret-status-code-type.patch
@@ -0,0 +1,11 @@
+--- a/core/rtw_bt_mp.c
++++ b/core/rtw_bt_mp.c
+@@ -169,7 +169,7 @@ mptbt_CheckBtRspStatus(
+     PBT_EXT_C2H			pExtC2h
+ )
+ {
+-	BT_CTRL_STATUS	retStatus=BT_OP_STATUS_SUCCESS;
++	BT_CTRL_STATUS	retStatus=BT_STATUS_SUCCESS;
+ 
+ 	switch(pExtC2h->statusCode) {
+ 	case BT_OP_STATUS_SUCCESS:




More information about the lede-commits mailing list