From: Weijie Gao Date: Thu, 29 Feb 2024 16:46:12 +0000 (+0800) Subject: rtl8812au-ct: fix build failure on linux kernel 6.6 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=01f04539701c6a08bee3f648ec40dade7aba46cc;hp=504cf50eea5a8f56b114cd985e7dc7af6cf64bfa;p=openwrt%2Fstaging%2F981213.git 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 --- 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: