From ad2d09acbae1378686da00a15035b0f950637862 Mon Sep 17 00:00:00 2001 From: Rin Cat Date: Sun, 20 Dec 2020 20:16:15 -0500 Subject: [PATCH] cfg80211_ch_switch_started_notify correct --- os_dep/linux/ioctl_cfg80211.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/os_dep/linux/ioctl_cfg80211.c b/os_dep/linux/ioctl_cfg80211.c index a962e1b..72f0505 100644 --- a/os_dep/linux/ioctl_cfg80211.c +++ b/os_dep/linux/ioctl_cfg80211.c @@ -442,8 +442,8 @@ 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, 10, 0)) - cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0, true); + #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