From 046d5be1af782ed40d373f07b5430559cec5ac7c Mon Sep 17 00:00:00 2001 From: smp79 Date: Tue, 23 Mar 2021 01:38:03 +0300 Subject: [PATCH] Fix kernel 5.11 build --- os_dep/linux/ioctl_cfg80211.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/os_dep/linux/ioctl_cfg80211.c b/os_dep/linux/ioctl_cfg80211.c index 2e6305c..8041156 100755 --- a/os_dep/linux/ioctl_cfg80211.c +++ b/os_dep/linux/ioctl_cfg80211.c @@ -439,7 +439,11 @@ u8 rtw_cfg80211_ch_switch_notify(_adapter *adapter, u8 ch, u8 bw, u8 offset, #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0)) if (started) { + #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 11, 0)) + cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0, false); + #else cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0); + #endif goto exit; } #endif