master
Tomás Pinho 2024-03-26 16:16:48 +00:00
parent fb804c3ac8
commit f119398d86
1 changed files with 4 additions and 4 deletions

View File

@ -417,13 +417,13 @@ u8 rtw_cfg80211_ch_switch_notify(_adapter *adapter, u8 ch, u8 bw, u8 offset, u8
if (ret != _SUCCESS)
goto exit;
#if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 19, 2))
#if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 19, 2))
cfg80211_ch_switch_notify(adapter->pnetdev, &chdef);
#elif (LINUX_VERSION_CODE < KERNEL_VERSION(6, 3, 0)) || (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 9, 0))
#elif (LINUX_VERSION_CODE < KERNEL_VERSION(6, 3, 0)) || (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 9, 0))
cfg80211_ch_switch_notify(adapter->pnetdev, &chdef, 0);
#else
#else
cfg80211_ch_switch_notify(adapter->pnetdev, &chdef, 0, 0);
#endif
#endif
#else
int freq = rtw_ch2freq(ch);