mirror of
https://github.com/armbian/build.git
synced 2025-08-11 05:36:57 +02:00
* Solve compatibility issues for some of wifi patches, disable those that needs more work * Fix 8812au * Update to re-enable RTL88x2CS driver for 5.19.2+ * Add 8723ds and rename others * Following naming convention * Name * Adjust UWE5622 for 5.19.2 * Update UWE5622 patch for sunxi * Enable last one * Fixes for 8723DU Co-authored-by: Vyacheslav Bocharov <adeep@lexina.in>
57 lines
2.2 KiB
Diff
57 lines
2.2 KiB
Diff
From 564440f99a06e17d09dabb6cc87ba2b208338de0 Mon Sep 17 00:00:00 2001
|
|
From: Igor Pecovnik <igor.pecovnik@gmail.com>
|
|
Date: Fri, 19 Aug 2022 07:07:02 +0200
|
|
Subject: [PATCH] Support for 5.19.2
|
|
|
|
Signed-off-by: Igor Pecovnik <igor.pecovnik@gmail.com>
|
|
---
|
|
.../rtl8189fs/os_dep/linux/ioctl_cfg80211.c | 59 +++--
|
|
1 files changed, 272 insertions(+), 23 deletions(-)
|
|
|
|
diff --git a/drivers/net/wireless/rtl8189fs/os_dep/linux/ioctl_cfg80211.c b/drivers/net/wireless/rtl8189fs/os_dep/linux/ioctl_cfg80211.c
|
|
index f6105decf9e2..a31856bc86b6 100644
|
|
--- a/drivers/net/wireless/rtl8189fs/os_dep/linux/ioctl_cfg80211.c
|
|
+++ b/drivers/net/wireless/rtl8189fs/os_dep/linux/ioctl_cfg80211.c
|
|
@@ -418,8 +418,11 @@ u8 rtw_cfg80211_ch_switch_notify(_adapter *adapter, u8 ch, u8 bw, u8 offset, u8
|
|
ret = rtw_chbw_to_cfg80211_chan_def(wiphy, &chdef, ch, bw, offset, ht);
|
|
if (ret != _SUCCESS)
|
|
goto exit;
|
|
-
|
|
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,19, 2))
|
|
+ cfg80211_ch_switch_notify(adapter->pnetdev, &chdef, 0);
|
|
+#else
|
|
cfg80211_ch_switch_notify(adapter->pnetdev, &chdef);
|
|
+#endif
|
|
|
|
#else
|
|
int freq = rtw_ch2freq(ch);
|
|
@@ -4967,7 +4970,11 @@ static int cfg80211_rtw_change_beacon(struct wiphy *wiphy, struct net_device *nd
|
|
return ret;
|
|
}
|
|
|
|
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,19, 2))
|
|
+static int cfg80211_rtw_stop_ap(struct wiphy *wiphy, struct net_device *ndev, unsigned int link_id)
|
|
+#else
|
|
static int cfg80211_rtw_stop_ap(struct wiphy *wiphy, struct net_device *ndev)
|
|
+#endif
|
|
{
|
|
_adapter *adapter = (_adapter *)rtw_netdev_priv(ndev);
|
|
|
|
@@ -9913,7 +9920,13 @@ void rtw_wdev_unregister(struct wireless_dev *wdev)
|
|
rtw_cfg80211_indicate_scan_done(adapter, _TRUE);
|
|
|
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0)) || defined(COMPAT_KERNEL_RELEASE)
|
|
+ #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,19, 2))
|
|
+ if (wdev->connected) {
|
|
+ #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 0, 0))
|
|
+ if (wdev->links[0].client.current_bss) {
|
|
+ #else
|
|
if (wdev->current_bss) {
|
|
+ #endif
|
|
RTW_INFO(FUNC_ADPT_FMT" clear current_bss by cfg80211_disconnected\n", FUNC_ADPT_ARG(adapter));
|
|
rtw_cfg80211_indicate_disconnect(adapter, 0, 1);
|
|
}
|
|
--
|
|
Created with Armbian build tools https://github.com/armbian/build
|
|
|