forked from radxa-pkg/aic8800
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request radxa-pkg#11 from 0101wu/develop
Fix the issue that the aic8800-sdio cannot be used in kernel 6.5.0 or…
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/src/SDIO/driver_fw/driver/aic8800/aic8800_fdrv/rwnx_main.c b/src/SDIO/driver_fw/driver/aic8800/aic8800_fdrv/rwnx_main.c | ||
index dc8bc5a..0c81123 100644 | ||
--- a/src/SDIO/driver_fw/driver/aic8800/aic8800_fdrv/rwnx_main.c | ||
+++ b/src/SDIO/driver_fw/driver/aic8800/aic8800_fdrv/rwnx_main.c | ||
@@ -5512,6 +5512,9 @@ rwnx_cfg80211_tdls_mgmt(struct wiphy *wiphy, | ||
const u8 *peer, | ||
#else | ||
u8 *peer, | ||
+#endif | ||
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 5, 0)) | ||
+ int link_id, | ||
#endif | ||
u8 action_code, | ||
u8 dialog_token, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters