From 7accfe2b6480a4005c761080e5ffc3744d9234cb Mon Sep 17 00:00:00 2001 From: Guilherme Alcarde Gallo Date: Sun, 20 Dec 2020 17:52:51 -0300 Subject: [PATCH] Adapt cfg80211 rtw_cfg80211_ch_switch_notify ioctl * This ioctl signature was changed in kernel 5.10.1 * It has a new parameter: the quiet boolean. I guessed that this value should be true in this case. --- 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 2427ebf..a962e1b 100644 --- a/os_dep/linux/ioctl_cfg80211.c +++ b/os_dep/linux/ioctl_cfg80211.c @@ -442,7 +442,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, 10, 0)) + cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0, true); + #else cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0); + #endif goto exit; } #endif